mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-05 13:16:03 +02:00
fixed min length of SECRET_PASSWORD. (#172)
This commit is contained in:
parent
357d25305f
commit
462b63acea
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ yarn start
|
||||||
| Parameter | Default | Description |
|
| Parameter | Default | Description |
|
||||||
| --------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
|
| --------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| DATABASE_URL | postgres://postgres:postgres@rallly_db:5432/db | A postgres database URL. Leave out if using the docker-compose file since it will spin up and connect to its own database instance. |
|
| DATABASE_URL | postgres://postgres:postgres@rallly_db:5432/db | A postgres database URL. Leave out if using the docker-compose file since it will spin up and connect to its own database instance. |
|
||||||
| SECRET_PASSWORD | - | A long string (minimum 25 characters) that is used to encrypt session data. |
|
| SECRET_PASSWORD | - | A long string (minimum 32 characters) that is used to encrypt session data. |
|
||||||
| SUPPORT_EMAIL | - | An email address that will appear as the FROM email for all emails being sent out. |
|
| SUPPORT_EMAIL | - | An email address that will appear as the FROM email for all emails being sent out. |
|
||||||
| SMTP_HOST | - | Host name of your SMTP server |
|
| SMTP_HOST | - | Host name of your SMTP server |
|
||||||
| SMTP_PORT | - | Port of your SMTP server |
|
| SMTP_PORT | - | Port of your SMTP server |
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
DATABASE_URL=postgres://your-database/db
|
DATABASE_URL=postgres://your-database/db
|
||||||
SECRET_PASSWORD=minimum-25-characters
|
SECRET_PASSWORD=minimum-32-characters
|
||||||
SUPPORT_EMAIL=foo@yourdomain.com
|
SUPPORT_EMAIL=foo@yourdomain.com
|
||||||
SMTP_HOST=your-smtp-server
|
SMTP_HOST=your-smtp-server
|
||||||
SMTP_PORT=587
|
SMTP_PORT=587
|
||||||
|
|
Loading…
Add table
Reference in a new issue