aboutsummaryrefslogtreecommitdiff
path: root/stackbin.py
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-15 11:28:51 -0500
committerB Stack <bgstack15@gmail.com>2022-02-15 11:28:51 -0500
commit19e973b60b07578cb71a9334a737053136dc6bbb (patch)
tree64126a9a986e226dcc8e179a602107ff2b233ab0 /stackbin.py
parentload stackbin_conf from env (diff)
downloadstackbin-19e973b60b07578cb71a9334a737053136dc6bbb.tar.gz
stackbin-19e973b60b07578cb71a9334a737053136dc6bbb.tar.bz2
stackbin-19e973b60b07578cb71a9334a737053136dc6bbb.zip
initialize database in app
Diffstat (limited to 'stackbin.py')
-rwxr-xr-xstackbin.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/stackbin.py b/stackbin.py
index f4059f0..ad5b047 100755
--- a/stackbin.py
+++ b/stackbin.py
@@ -302,5 +302,7 @@ def get_proxied_path():
app.wsgi_app = ProxyFix(app.wsgi_app,x_for=pl,x_host=pl,x_port=pl,x_prefix=pl,x_proto=pl)
return redirect(url_for('new_paste'))
+# Initialize the database if it does not already exist
+db.create_all()
if __name__ == "__main__":
app.run()
bgstack15