1
Fork 0

Postgres is overkill, sqlite it is!

This commit is contained in:
Jake Howard 2015-12-31 00:56:28 +00:00
parent af32e95576
commit 474dbb9834
4 changed files with 4 additions and 4 deletions

1
.gitignore vendored
View file

@ -59,3 +59,4 @@ docs/_build/
target/
private/
database.db

View file

@ -1,3 +1,3 @@
DEBUG=false
DATABASE_URL=postgres://localhost/theorangeonenet
DATABASE_URL=sqlite://~/database.db
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend

View file

@ -1,3 +1,3 @@
DEBUG=true
DATABASE_URL=postgres://localhost/theorangeonenet
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
DATABASE_URL=sqlite://~/database.db
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend

View file

@ -4,6 +4,5 @@ dj-database-url==0.3.0
django-bootstrap-form==3.2
django-flat-theme==1.1.3
flake8==2.5.0
psycopg2==2.6.1
whitenoise==2.0.6
waitress==0.8.10