Skip to content

Commit c51938f

Browse files
committed
chore: remove unnecesary variable and improve docs
1 parent 6a85d11 commit c51938f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

backend/.env.default

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
################################################################################################
88

99
DATABASE_URL=postgresql://postgres:postgres@db:5432/postgres?schema=public
10-
REDIS_URI="redis://redis:6379/0"
11-
PYTHON_ENV=production
10+
11+
PYTHON_ENV=production

backend/app/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class Settings(BaseSettings):
2828
# Why? This way we can control most production values through commits, instead
2929
# of having to manually set them in the production server. The `.env` in production
3030
# is reserved only for secrets.
31+
# Also, all env variables required to build containers must be set in `.env.default`
3132

3233
# Environment name. Used to select the correct environment variables.
3334
# Possible values: "development", "production".

0 commit comments

Comments
 (0)