2024-06-27 21:23:51 -06:00
|
|
|
# This file is an example of the .env file that should be created in the root of the project
|
|
|
|
# This file should not be committed to the repository
|
|
|
|
# The actual .env file should contain the following variables
|
|
|
|
|
2024-06-27 21:51:00 -06:00
|
|
|
# The database credentials
|
|
|
|
POSTGRES_HOST=localhost
|
|
|
|
POSTGRES_PORT=5432
|
|
|
|
POSTGRES_PASSWORD=postgres
|
|
|
|
POSTGRES_USER=postgres
|
|
|
|
POSTGRES_DB=db
|
2024-06-27 21:23:51 -06:00
|
|
|
# The secret key used to sign the JWT tokens
|
2024-06-27 21:51:00 -06:00
|
|
|
AUTH_SECRET=super-duper-secret
|
2024-06-27 21:23:51 -06:00
|
|
|
# If you want to run the app in development mode, set this to true
|
|
|
|
DEVMODE=true
|