Cleanup
This commit is contained in:
parent
b75d0ccb3c
commit
0d494df0e3
5 changed files with 0 additions and 9 deletions
|
@ -1,4 +1,3 @@
|
||||||
DEBUG=false
|
DEBUG=false
|
||||||
DATABASE_URL=sqlite://~/database.db
|
|
||||||
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
|
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
|
||||||
BUILD_PRODUCTION=true
|
BUILD_PRODUCTION=true
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
web: waitress-serve --port $PORT project.wsgi:application
|
web: waitress-serve --port $PORT project.wsgi:application
|
||||||
worker: manage.py worker
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
DEBUG=true
|
DEBUG=true
|
||||||
DATABASE_URL=sqlite://~/database.db
|
|
||||||
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
|
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
web: manage.py runserver 0.0.0.0:$PORT
|
web: manage.py runserver 0.0.0.0:$PORT
|
||||||
watcher: npm run watch
|
watcher: npm run watch
|
||||||
worker: manage.py worker
|
|
||||||
|
|
|
@ -20,13 +20,8 @@ ALLOWED_HOSTS = ['too.ctf.sh', 'theorangeone.net']
|
||||||
INSTALLED_APPS = (
|
INSTALLED_APPS = (
|
||||||
'django.contrib.auth',
|
'django.contrib.auth',
|
||||||
'django.contrib.contenttypes',
|
'django.contrib.contenttypes',
|
||||||
'django.contrib.sessions',
|
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
|
|
||||||
'bootstrapform',
|
|
||||||
'mail_templated',
|
|
||||||
'django_dbq',
|
|
||||||
|
|
||||||
'project.pages',
|
'project.pages',
|
||||||
'project.common',
|
'project.common',
|
||||||
'project.blog'
|
'project.blog'
|
||||||
|
|
Reference in a new issue