diff options
author | B Stack <bgstack15@gmail.com> | 2022-02-15 09:52:43 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2022-02-15 09:59:19 -0500 |
commit | 171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5 (patch) | |
tree | 44db45d1f1878738b89a3a20b670072a740937af /stackbin.conf.example | |
parent | r-proxy support with /set endpoint, and extra dir (diff) | |
download | stackbin-171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5.tar.gz stackbin-171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5.tar.bz2 stackbin-171ec414ae74564e2c6f7a6e7da7f0ebdc9db2d5.zip |
add initial system-ready values and install steps
Diffstat (limited to 'stackbin.conf.example')
-rw-r--r-- | stackbin.conf.example | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/stackbin.conf.example b/stackbin.conf.example new file mode 100644 index 0000000..5a590e5 --- /dev/null +++ b/stackbin.conf.example @@ -0,0 +1,20 @@ +DEBUG=False +SQLALCHEMY_DATABASE_URI='sqlite:///stackbin.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 = 60 * 5 + +# 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" +] + +TEMPLATE_FOLDER = "/usr/share/stackbin/templates" +STATIC_FOLDER = "/usr/share/stackbin/static" |