-
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.
Update docker compose and default
.env.dev.example
(#19)
- Loading branch information
1 parent
0fb5353
commit 1682083
Showing
3 changed files
with
8 additions
and
9 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
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
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,16 +1,16 @@ | ||
APP_ENV="development" | ||
PORT="3000" | ||
PORT=":3000" | ||
JWT_SECRET="not-so-secret-jwt-secret" | ||
REQUIRE_VERIFICATION="true" | ||
REQUIRE_VERIFICATION="false" | ||
UNAUTHORIZED_REQUEST_LIMIT="99999" | ||
SHORT_REQUEST_LIMIT="99999" | ||
LONG_REQUEST_LIMIT="99999" | ||
LOG_LEVEL="0" | ||
DB_HOST="localhost" | ||
DB_PORT="5432" | ||
DB_NAME="postgres" | ||
DB_USER="" | ||
DB_PASSWORD="" | ||
DB_PORT="5431" # 5432 is the default if not running docker compose | ||
DB_NAME="db" | ||
DB_USER="app" | ||
DB_PASSWORD="app" | ||
DB_SSL_MODE="disable" | ||
DB_MAX_CONNECTIONS="4" | ||
DB_MIN_CONNECTIONS="0" |