Commit 4277bab9 by Chif Gergő

Some fixes in settings, Pipfile

parent 09803af9
...@@ -72,6 +72,7 @@ db.sqlite3 ...@@ -72,6 +72,7 @@ db.sqlite3
#Pipfile.lock #Pipfile.lock
# Environments # Environments
*.env
.env .env
.venv .venv
env/ env/
...@@ -83,3 +84,6 @@ environment.sh ...@@ -83,3 +84,6 @@ environment.sh
# Cloud configure # Cloud configure
clouds.yaml clouds.yaml
# Celery beat
celerybeat-schedule
...@@ -9,7 +9,6 @@ flake8 = "*" ...@@ -9,7 +9,6 @@ flake8 = "*"
django-rest-swagger = "*" django-rest-swagger = "*"
coverage = "*" coverage = "*"
django-nose = "*" django-nose = "*"
v = {editable = true,version = "*"}
[packages] [packages]
django = "*" django = "*"
......
...@@ -20,7 +20,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ...@@ -20,7 +20,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/ # See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret! # SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "xhe8=w50lz82gjb6+z%(rwk2c+1kd!%(iv_s^!tp)*5cnb=-^t" SECRET_KEY = os.getenv("DJANGO_SECRET")
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment