Sebastián Ramírez
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
9 additions and
3 deletions
-
.env
-
README.md
-
copier.yml
-
deployment.md
|
|
@ -37,7 +37,7 @@ PGADMIN_LISTEN_PORT=5050 |
|
|
|
SENTRY_DSN= |
|
|
|
|
|
|
|
# Flower |
|
|
|
FLOWER_BASIC_AUTH= |
|
|
|
FLOWER_BASIC_AUTH=admin:changethis |
|
|
|
|
|
|
|
# Configure these with your own Docker registry images |
|
|
|
DOCKER_IMAGE_BACKEND=backend |
|
|
|
|
|
@ -86,7 +86,7 @@ Make sure you at least change the value for `SECRET_KEY` in the main `.env` file |
|
|
|
|
|
|
|
### Generate secret keys |
|
|
|
|
|
|
|
Some environment variables in the `.env` file have a default value of `changethis`. |
|
|
|
Some environment variables in the `.env` file have a default value of `changethis`. |
|
|
|
|
|
|
|
You have to change them with a secret key, to generate secret keys you can run the following command: |
|
|
|
|
|
|
@ -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_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. |
|
|
|
- `flower_basic_auth`: (default: `"admin:changethis"`) The basic auth for Flower, you can set it later in .env. |
|
|
|
|
|
|
|
## Release Notes |
|
|
|
|
|
|
|
|
|
@ -69,6 +69,11 @@ sentry_dsn: |
|
|
|
help: The DSN for Sentry, if you are using it, you can set it later in .env |
|
|
|
default: "" |
|
|
|
|
|
|
|
flower_basic_auth: |
|
|
|
type: str |
|
|
|
help: The basic auth for Flower, you can set it later in .env |
|
|
|
default: "admin:changethis" |
|
|
|
|
|
|
|
_exclude: |
|
|
|
# Global |
|
|
|
- .vscode |
|
|
|
|
|
@ -143,7 +143,7 @@ You can set several variables, like: |
|
|
|
* `PGADMIN_DEFAULT_EMAIL`: The default email for pgAdmin. |
|
|
|
* `PGADMIN_DEFAULT_PASSWORD`: The default password for pgAdmin. |
|
|
|
* `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 |
|
|
|
|
|
|
|