pypowerdns/config.py
Luiz Gustavo Costa (gugabsd) 457a6b869b fix .gitignore
2013-01-07 16:20:07 -02:00

11 lines
251 B
Python

# -*- coding: utf-8 -*-
import os
_basedir = os.path.abspath(os.path.dirname(__file__))
DEBUG = False
SECRET_KEY = 'niuddm7nh235hybh786f67vtbcawkiknl/'
PATH_DB = os.path.join("./var", "main.db")
SQLALCHEMY_DATABASE_URI = 'sqlite:///%s' % (PATH_DB)