Last active
December 9, 2015 19:48
-
-
Save mariuz/4319250 to your computer and use it in GitHub Desktop.
local_settings.py for mezzanine django cms installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEBUG = True | |
DATABASES = { | |
"default": { | |
# Firebird | |
"ENGINE": "firebird", | |
# DB name or path to database file | |
"NAME": "/var/lib/firebird/2.5/data/firebird-mezzanine.fdb", | |
# . | |
"USER": "sysdba", | |
# | |
"PASSWORD": "masterkey", | |
# Set to empty string for localhost | |
"HOST": "127.0.0.1", | |
# Set to empty string for default | |
"PORT": "3050", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment