-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fea: update .env.sample file with updated values
- Loading branch information
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
# Here are the environment variables that are used by the application | ||
# Default values are the ones specified in this file | ||
|
||
DB_HOST=localhost | ||
DB_PORT=5432 | ||
DB_USER=postgres | ||
DB_PASSWORD= | ||
DB_NAME= | ||
SECRET= | ||
SECRET= | ||
# DEBUG sets isProduction to false, it enables error messages for | ||
# HTTP requests and disables preforking and startup message | ||
DEBUG=false | ||
# LOG_LEVEL sets the log level for the application | ||
# Possible values are: trace, debug, info, warn, error, fatal, panic | ||
LOG_LEVEL=debug | ||
# APP_ADDR sets the address and port the application will listen on | ||
APP_ADDR=:3000 | ||
# STATIC_DIR sets the directory where the static files are located | ||
STATIC_DIR=static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters