Skip to content

Commit

Permalink
Fix formatting of .env.development file
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtitherington committed Feb 26, 2024
1 parent 93fddee commit 640de0d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions backend/.env.development
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

0 comments on commit 640de0d

Please sign in to comment.