🔧 Add a default Flower password (#682)

This commit is contained in:
Sebastián Ramírez
2024-03-12 10:53:25 +01:00
committed by GitHub
parent 6d5db02b35
commit 6adafdc13d
4 changed files with 9 additions and 3 deletions

2
.env
View File

@@ -37,7 +37,7 @@ PGADMIN_LISTEN_PORT=5050
SENTRY_DSN= SENTRY_DSN=
# Flower # Flower
FLOWER_BASIC_AUTH= FLOWER_BASIC_AUTH=admin:changethis
# Configure these with your own Docker registry images # Configure these with your own Docker registry images
DOCKER_IMAGE_BACKEND=backend DOCKER_IMAGE_BACKEND=backend

View File

@@ -157,6 +157,7 @@ The input variables, with their default values (some auto generated) are:
- `pgadmin_default_user`: (default: `"admin"`) The default user for pgAdmin, you can set it later in .env. - `pgadmin_default_user`: (default: `"admin"`) The default user for pgAdmin, you can set it later in .env.
- `pgadmin_default_password`: (default: `"changethis"`) The default user password for pgAdmin, stored in .env. - `pgadmin_default_password`: (default: `"changethis"`) The default user password for pgAdmin, stored in .env.
- `sentry_dsn`: (default: "") The DSN for Sentry, if you are using it, you can set it later in .env. - `sentry_dsn`: (default: "") The DSN for Sentry, if you are using it, you can set it later in .env.
- `flower_basic_auth`: (default: `"admin:changethis"`) The basic auth for Flower, you can set it later in .env.
## Release Notes ## Release Notes

View File

@@ -69,6 +69,11 @@ sentry_dsn:
help: The DSN for Sentry, if you are using it, you can set it later in .env help: The DSN for Sentry, if you are using it, you can set it later in .env
default: "" default: ""
flower_basic_auth:
type: str
help: The basic auth for Flower, you can set it later in .env
default: "admin:changethis"
_exclude: _exclude:
# Global # Global
- .vscode - .vscode

View File

@@ -143,7 +143,7 @@ You can set several variables, like:
* `PGADMIN_DEFAULT_EMAIL`: The default email for pgAdmin. * `PGADMIN_DEFAULT_EMAIL`: The default email for pgAdmin.
* `PGADMIN_DEFAULT_PASSWORD`: The default password for pgAdmin. * `PGADMIN_DEFAULT_PASSWORD`: The default password for pgAdmin.
* `SENTRY_DSN`: The DSN for Sentry, if you are using it. * `SENTRY_DSN`: The DSN for Sentry, if you are using it.
* `FLOWER_BASIC_AUTH`: The HTTP Basic Auth for Flower. * `FLOWER_BASIC_AUTH`: The HTTP Basic Auth for Flower, like `admin:changethis`.
### Generate secret keys ### Generate secret keys