Skip to content

Commit

Permalink
Switch to Postgres.
Browse files Browse the repository at this point in the history
  • Loading branch information
levidyrek committed Jan 12, 2019
1 parent 1a3b714 commit f20da60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions example/settings.py
Expand Up @@ -78,8 +78,11 @@

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'postgres',
'USER': 'postgres',
'HOST': 'db',
'PORT': '5432',
}
}

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
@@ -1,6 +1,7 @@
Django==2.1.2
flake8==3.5.0
mccabe==0.6.1
psycopg2-binary==2.7.5
pycodestyle==2.3.1
pyflakes==1.6.0
pytz==2018.5

0 comments on commit f20da60

Please sign in to comment.