Skip to content

Commit

Permalink
Modificación del settings para que podamos trabajar con PostgreSQL en…
Browse files Browse the repository at this point in the history
… lugar de SQLite3
  • Loading branch information
alexdzul committed Apr 3, 2015
1 parent d5d9a35 commit cdf3414
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions keyflavor/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'keyflavor_db',
'USER': 'admin',
'PASS': 'admin',
}
}

Expand Down

0 comments on commit cdf3414

Please sign in to comment.