Postgres is overkill, sqlite it is!
This commit is contained in:
parent
af32e95576
commit
474dbb9834
4 changed files with 4 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -59,3 +59,4 @@ docs/_build/
|
||||||
target/
|
target/
|
||||||
|
|
||||||
private/
|
private/
|
||||||
|
database.db
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
DEBUG=false
|
DEBUG=false
|
||||||
DATABASE_URL=postgres://localhost/theorangeonenet
|
DATABASE_URL=sqlite://~/database.db
|
||||||
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
|
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
DEBUG=true
|
DEBUG=true
|
||||||
DATABASE_URL=postgres://localhost/theorangeonenet
|
DATABASE_URL=sqlite://~/database.db
|
||||||
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
|
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
|
||||||
|
|
|
@ -4,6 +4,5 @@ dj-database-url==0.3.0
|
||||||
django-bootstrap-form==3.2
|
django-bootstrap-form==3.2
|
||||||
django-flat-theme==1.1.3
|
django-flat-theme==1.1.3
|
||||||
flake8==2.5.0
|
flake8==2.5.0
|
||||||
psycopg2==2.6.1
|
|
||||||
whitenoise==2.0.6
|
whitenoise==2.0.6
|
||||||
waitress==0.8.10
|
waitress==0.8.10
|
||||||
|
|
Reference in a new issue