mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +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 |
|
||||
| --------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| 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. |
|
||||
| SMTP_HOST | - | Host name of your SMTP server |
|
||||
| SMTP_PORT | - | Port of your SMTP server |
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
DATABASE_URL=postgres://your-database/db
|
||||
SECRET_PASSWORD=minimum-25-characters
|
||||
SECRET_PASSWORD=minimum-32-characters
|
||||
SUPPORT_EMAIL=foo@yourdomain.com
|
||||
SMTP_HOST=your-smtp-server
|
||||
SMTP_PORT=587
|
||||
|
|
Loading…
Add table
Reference in a new issue