diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-24 16:11:43 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-24 16:11:49 -0700 |
commit | ecfc0bae97919a88b22145415cb54e3cc170eec2 (patch) | |
tree | 66278ae2becf2051a0873b88ca427c460bed123f /config.py | |
parent | 90303b0d15d51ec51b501db8ba61c11dd78ff522 (diff) | |
download | fatcat-ecfc0bae97919a88b22145415cb54e3cc170eec2.tar.gz fatcat-ecfc0bae97919a88b22145415cb54e3cc170eec2.zip |
wire up debug toolbar (cool!)
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,3 +6,8 @@ class Config(object): SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URI') or \ 'sqlite:///' + os.path.join(basedir, 'fatcat_dev.sqlite') SQLALCHEMY_TRACK_MODIFICATIONS = False + + # "Event more verbose" debug options. SECRET_KEY is bogus. + #SQLALCHEMY_ECHO = True + #SECRET_KEY = "kuhy0284hflskjhg01284" + #DEBUG = True |