aboutsummaryrefslogtreecommitdiff
blob: 0472038b162cbb60c0579f24b6c6539b224f865b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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'

## Grumpy configuration
# Server address without the /path
GRUMPY_SERVER_ADDR='http://localhost:5000'
GRUMPY_SERVER_EMAIL='grumpy@example.org'
# Default portage directory
GRUMPY_PORTAGE_DIR='/usr/portage'

# List containing administrator emails
GRUMPY_ADMINS=[]
GRUMPY_WEBSITE_NAME='Gentoo Grumpy'

# Username/password for tinderbox reports
TINDERBOX_USER='tinder'
TINDERBOX_PASS='box'