-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EVERGIS] websocket-services должен указывать на backend.service.name…
…. Required defaults (#457) * [EVERGIS] websocket-services должен указывать на backend.service.name * [EVERGIS] websocket-services должен указывать на backend.service.name. Default values * [EVERGIS] websocket-services должен указывать на backend.service.name. Default values --------- Co-authored-by: Alexander Voronkov <[email protected]>
- Loading branch information
Showing
3 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,11 +84,11 @@ See the [documentation](https://docs.2gis.com/en/on-premise/gis-platform) to lea | |
| `spcore.postgres.name` | PostgreSQL database name **Required** | `""` | | ||
| `spcore.postgres.poolsize` | PostgreSQL connection pool size. | `25` | | ||
| `spcore.admin` | **Admin access settings.** | | | ||
| `spcore.admin.email` | Admin email **Required** | `[email protected]` | | ||
| `spcore.admin.password` | Admin password **Required** | `123456` | | ||
| `spcore.admin.email` | Admin email **Required** Example: [email protected] | `""` | | ||
| `spcore.admin.password` | Admin password **Required** | `""` | | ||
| `spcore.jwt` | **JSON Web Token (JWT) settings.** | | | ||
| `spcore.jwt.tokenKey` | JWT default user token **Required** | `supersecrettoken` | | ||
| `spcore.jwt.tokenAdmin` | JWT admin user token **Required** | `supersecrettoken` | | ||
| `spcore.jwt.tokenKey` | JWT default user token **Required** | `""` | | ||
| `spcore.jwt.tokenAdmin` | JWT admin user token **Required** | `""` | | ||
| `spcore.catalog` | **Catalog settings.** | | | ||
| `spcore.catalog.url` | Catalog service URL **Required** Example: `http://catalog-api` | `""` | | ||
| `spcore.catalog.key` | Catalog access key **Required** | `""` | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,20 +126,20 @@ spcore: | |
poolsize: 25 | ||
|
||
# @extra spcore.admin **Admin access settings.** | ||
# @param spcore.admin.email Admin email **Required** | ||
# @param spcore.admin.email Admin email **Required** Example: [email protected] | ||
# @param spcore.admin.password Admin password **Required** | ||
|
||
admin: | ||
email: [email protected] | ||
password: '123456' | ||
email: '' | ||
password: '' | ||
|
||
# @extra spcore.jwt **JSON Web Token (JWT) settings.** | ||
# @param spcore.jwt.tokenKey JWT default user token **Required** | ||
# @param spcore.jwt.tokenAdmin JWT admin user token **Required** | ||
|
||
jwt: | ||
tokenKey: supersecrettoken | ||
tokenAdmin: supersecrettoken | ||
tokenKey: '' | ||
tokenAdmin: '' | ||
|
||
# @extra spcore.catalog **Catalog settings.** | ||
# @param spcore.catalog.url Catalog service URL **Required** Example: `http://catalog-api` | ||
|