docs: Add DEFAULT_PASSWORD to backend configuration docs (#2691)

* Add Default Password to backend configuration

* delete frontend env note
This commit is contained in:
Kuchenpirat 2023-10-28 22:26:16 +02:00 committed by GitHub
parent 75e95817a3
commit 8ac8459054
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,18 +4,19 @@
### General ### General
| Variables | Default | Description | | Variables | Default | Description |
| ------------- | :-------------------: | ----------------------------------------------------------------------------------- | | ---------------- | :-------------------: | ----------------------------------------------------------------------------------- |
| PUID | 911 | UserID permissions between host OS and container | | PUID | 911 | UserID permissions between host OS and container |
| PGID | 911 | GroupID permissions between host OS and container | | PGID | 911 | GroupID permissions between host OS and container |
| DEFAULT_GROUP | Home | The default group for users | | DEFAULT_GROUP | Home | The default group for users |
| DEFAULT_EMAIL | changeme@example.com | The default username for the superuser | | DEFAULT_EMAIL | changeme@example.com | The default username for the superuser |
| BASE_URL | http://localhost:8080 | Used for Notifications | | DEFAULT_PASSWORD | MyPassword | The default password for the superuser |
| TOKEN_TIME | 48 | The time in hours that a login/auth token is valid | | BASE_URL | http://localhost:8080 | Used for Notifications |
| API_PORT | 9000 | The port exposed by backend API. **Do not change this if you're running in Docker** | | TOKEN_TIME | 48 | The time in hours that a login/auth token is valid |
| API_DOCS | True | Turns on/off access to the API documentation locally. | | API_PORT | 9000 | The port exposed by backend API. **Do not change this if you're running in Docker** |
| TZ | UTC | Must be set to get correct date/time on the server | | API_DOCS | True | Turns on/off access to the API documentation locally. |
| ALLOW_SIGNUP | true | Allow user sign-up without token (should match frontend env) | | TZ | UTC | Must be set to get correct date/time on the server |
| ALLOW_SIGNUP | true | Allow user sign-up without token |
### Security ### Security