Browse Source

Ensure .env file gets read

pull/210/head
Clemens Wolff 5 years ago
parent
commit
09357f290b
1 changed files with 1 additions and 1 deletions
  1. 2
      app/app/settings.py

2
app/app/settings.py

@ -22,7 +22,7 @@ from furl import furl
BASE_DIR = path.dirname(path.dirname(path.abspath(__file__)))
env = Env()
env.read_env(BASE_DIR, recurse=False)
env.read_env(path.join(BASE_DIR, '.env'), recurse=False)
# Quick-start development settings - unsuitable for production

Loading…
Cancel
Save