Revert development.py

This commit is contained in:
Mikko Haikonen 2020-07-29 16:42:04 +03:00
parent dfdadea5ba
commit 308f0f4c57
1 changed files with 1 additions and 8 deletions

View File

@ -3,16 +3,9 @@ from .base import *
# Quick-start development settings - unsuitable for production
# https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
SECRET_KEY = 'CHANGE ME LOL'
SECRET_KEY = 'CHANGE ME'
DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, '../data/db.sqlite3'),
}
}
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.0/howto/static-files/