aboutsummaryrefslogtreecommitdiff
path: root/config.cfg.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'config.cfg.tpl')
-rw-r--r--config.cfg.tpl13
1 files changed, 13 insertions, 0 deletions
diff --git a/config.cfg.tpl b/config.cfg.tpl
index 50b4419..23fb072 100644
--- a/config.cfg.tpl
+++ b/config.cfg.tpl
@@ -2,3 +2,16 @@ 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