-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix formatting of .env.development file
- Loading branch information
1 parent
93fddee
commit 640de0d
Showing
1 changed file
with
12 additions
and
12 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,19 +1,19 @@ | ||
# General settings | ||
ENVIRONMENT = development | ||
ENVIRONMENT=development | ||
|
||
# Django settings | ||
DEBUG = True | ||
DEVELOPMENT_MODE = False # TODO: Delete this and update settings.py | ||
DJANGO_ALLOWED_HOSTS = 'localhost,0.0.0.0,127.0.0.1,192.168.1.220' | ||
DJANGO_SETTINGS_MODULE = backend.settings | ||
DEBUG=True | ||
DEVELOPMENT_MODE=False # TODO: Delete this and update settings.py | ||
DJANGO_ALLOWED_HOSTS='localhost,0.0.0.0,127.0.0.1,192.168.1.220' | ||
DJANGO_SETTINGS_MODULE=backend.settings | ||
|
||
# Postgres settings | ||
DB_NAME = crumpet_db | ||
DB_USERNAME = head_baker | ||
DB_PASSWORD = Crumpet2023 | ||
DB_HOST = db # Change this to localhost if not using docker | ||
DB_PORT = 5432 | ||
DB_SSL_MODE = require | ||
DB_NAME=crumpet_db | ||
DB_USERNAME=head_baker | ||
DB_PASSWORD=Crumpet2023 | ||
DB_HOST=db # Change this to localhost if not using docker | ||
DB_PORT=5432 | ||
DB_SSL_MODE=require | ||
|
||
# Redis settings for channels (websockets) | ||
REDIS_CHANNELS_HOST = localhost | ||
REDIS_CHANNELS_HOST=localhost |