Remove postgres
This commit is contained in:
parent
9e8a79343a
commit
3045c92fc3
4 changed files with 4 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -59,3 +59,4 @@ docs/_build/
|
|||
target/
|
||||
|
||||
private/
|
||||
database.db
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
DEBUG=false
|
||||
DATABASE_URL=postgres://localhost/theorangeonenet
|
||||
DATABASE_URL=sqlite:///database.db
|
||||
EMAIL_BACKEND=django.core.mail.backends.smtp.EmailBackend
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
DEBUG=true
|
||||
DATABASE_URL=postgres://localhost/theorangeonenet
|
||||
DATABASE_URL=sqlite:///database.db
|
||||
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
|
|
@ -5,7 +5,6 @@ djangorestframework==3.2.0
|
|||
djorm-ext-pgfulltext==0.10
|
||||
flake8==2.4.1
|
||||
pep8==1.5.7
|
||||
psycopg2==2.6.1
|
||||
pycrypto==2.6.1
|
||||
pyflakes==0.8.1
|
||||
six==1.9.0
|
||||
|
|
Reference in a new issue