aboutsummaryrefslogtreecommitdiff
path: root/config.cfg.example
blob: 23fb07291672ea707057cb7166821cf3f69b520b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DEBUG=False
SQLALCHEMY_DATABASE_URI='sqlite:///pastebin.db'
SECRET_KEY='development-key'
SALT='jackson'
DELETESALT='differentstring'
APPNAME='stackbin'
# LOOP_DELAY in seconds is how many seconds between running the expiration cleanup task
LOOP_DELAY = 5 * 3

# Disable this variable entirely, to disable any choices for expiration
# Any very simple expression for relative time can be used here. This will be processed by pyparsedate.
EXPIRATION_OPTIONS = [
   "never",
   "1 day",
   "1 hour",
   "15 minutes"
]
bgstack15