Skip to content

Instantly share code, notes, and snippets.

@mariuz
Last active December 9, 2015 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariuz/4319250 to your computer and use it in GitHub Desktop.
Save mariuz/4319250 to your computer and use it in GitHub Desktop.
local_settings.py for mezzanine django cms installation
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