fmartingr
/
shelfzilla
Archived
1
0
Fork 0

PostgreSQL for local development. (DISTINCT ON not possible on SQLite)

This commit is contained in:
Felipe Martin 2014-03-26 15:48:10 +01:00
parent 1b736988c8
commit c9868beef8
2 changed files with 10 additions and 0 deletions

View File

@ -7,3 +7,7 @@ django-suit==0.2.6
# Fixes
longerusername==0.4
# DDBB
dj-database-url==0.3.0
psycopg2==2.5.2

View File

@ -1,4 +1,10 @@
import dj_database_url
from .base import *
DEBUG = True
TEMPLATE_DEBUG = True
DATABASES = {
'default': dj_database_url.parse('postgres:///shelfzilla')
}