aboutsummaryrefslogtreecommitdiff
blob: 6abcad8200ec2277d26138aac6ed0fb1c1ed68c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This is an example configuration file for Grumpy application

# Debug mode: Please be sure that this is disabled on development servers
# because it allows execution of arbitrary code.
DEBUG = True
# Secret random key for cookie generation. For best results of randomness
# use the snippet below:
# >> import os ; os.urandom(24)
SECRET_KEY='Change me'

# Database configuration
SQLALCHEMY_ECHO=False
SQLALCHEMY_DATABASE_URI='postgresql://grumpy:grumpy@localhost/grumpy'