Skip to content

Commit

Permalink
Merge pull request #106 from NIAEFEUP/fix/allowed-hosts-and-debugmode
Browse files Browse the repository at this point in the history
FIX: allowed hosts, debug mode and secret key
  • Loading branch information
tomaspalma committed Aug 25, 2024
2 parents 431f0b1 + 9419325 commit 9752129
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion django/.env.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DEBUG=0
DEBUG=1
SECRET_KEY=foo

POSTGRES_DB=tts
Expand Down
8 changes: 3 additions & 5 deletions django/tts_be/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,11 @@
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-!d4s#a%mo7ou&nc+-b&qfx$nu&&vo_^z*kauh0-8@%)ni@ze+7'
SECRET_KEY = os.getenv('SECRET_KEY')

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ['0.0.0.0', 'localhost']
DEBUG = False if int(os.getenv('DEBUG')) == 0 else True

ALLOWED_HOSTS = ['0.0.0.0', 'localhost', 'tts.niaefeup.pt', 'tts-staging.niaefeup.pt']

# Application definition

Expand Down

0 comments on commit 9752129

Please sign in to comment.