diff --git a/.gitignore b/.gitignore index 3a7e4a2..9e45b85 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,4 @@ docs/_build/ target/ private/ +database.db diff --git a/etc/environments/deployment/env b/etc/environments/deployment/env index 4e8ac0e..c4728bf 100644 --- a/etc/environments/deployment/env +++ b/etc/environments/deployment/env @@ -1,3 +1,3 @@ DEBUG=false -DATABASE_URL=postgres://localhost/theorangeonenet +DATABASE_URL=sqlite://~/database.db EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend diff --git a/etc/environments/development/env b/etc/environments/development/env index 1e9eaf3..eeacb9c 100644 --- a/etc/environments/development/env +++ b/etc/environments/development/env @@ -1,3 +1,3 @@ DEBUG=true -DATABASE_URL=postgres://localhost/theorangeonenet -EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend \ No newline at end of file +DATABASE_URL=sqlite://~/database.db +EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend diff --git a/requirements.txt b/requirements.txt index c69b3e5..7b1fbd3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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