-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
10 lines (10 loc) · 847 Bytes
/
Copy path.env.example
File metadata and controls
10 lines (10 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
ENVIRONMENT_NAME= # dev | prod | qa
SERVER_PORT= # port where backend will listen
ENABLE_CORS= # put * if you want to enable it for any
REPOSITORY_TYPE= # for now only postgres is supported
DB_USER= # postgres db user, if/when you want to change to a different than default one, change it on docker compose too
DB_NAME= # postgres db name, if/when you want to change to a different than default one, change it on docker compose too
DB_PASS= # postgres db password, if/when you want to change to a different than default one, change it on docker compose too
DB_PORT= # postgres db port, if/when you want to change to a different than default one, change it on docker compose too
DB_HOST= # depends on where your db is hosted, default dockerized -> db, default local->localhost, etc.
SECRET_KEY= # a key to crypt/decrypt redux store on local storage