Compare commits

...

2 Commits

Author SHA1 Message Date
Fred Pauchet 2ff7df0911 Add psycopg2 as requirement 2021-10-27 20:58:27 +02:00
Fred Pauchet b67dbc391f Read env 2021-10-27 20:53:10 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@ env = environ.Env(
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
environ.Env.read_env(os.path.join(BASE_DIR, '.env'))
environ.Env.read_env()
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/

View File

@ -1,6 +1,7 @@
django==3.2.8
django-environ==0.8.1
gunicorn
psycopg2
boto3
django-storages