Skip to content

Commit

Permalink
bixie - use sql lite for database changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnen committed Jun 3, 2013
1 parent 5238a76 commit 382415e
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions bixie/bixie/settings/local.py-dist
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ from . import base
# To extend any settings from settings/base.py here's an example:
#INSTALLED_APPS = base.INSTALLED_APPS + ['debug_toolbar']

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'playdoh_app',
'USER': 'root',
'PASSWORD': '',
'HOST': '',
'PORT': '',
'OPTIONS': {
'init_command': 'SET storage_engine=InnoDB',
'charset' : 'utf8',
'use_unicode' : True,
},
'TEST_CHARSET': 'utf8',
'TEST_COLLATION': 'utf8_general_ci',
},
# 'slave': {
# ...
# },
}
#DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.postgresql_psycopg2',
# 'NAME': 'playdoh_app',
# 'USER': 'root',
# 'PASSWORD': '',
# 'HOST': '',
# 'PORT': '',
# 'OPTIONS': {
# 'init_command': 'SET storage_engine=InnoDB',
# 'charset' : 'utf8',
# 'use_unicode' : True,
# },
# 'TEST_CHARSET': 'utf8',
# 'TEST_COLLATION': 'utf8_general_ci',
# },
# # 'slave': {
# # ...
# # },
#}

# Uncomment this and set to all slave DBs in use on the site.
# SLAVE_DATABASES = ['slave']
Expand Down

0 comments on commit 382415e

Please sign in to comment.