From 6641c28ab2109277ed9e15559d3ecdc10cc5b807 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Fri, 11 Feb 2022 18:54:56 -0500 Subject: Fix dep problem so flask>=2.0.0 now! By just writing a new initdb command so we don't need manage.py anymore. --- initdb.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 initdb.py (limited to 'initdb.py') diff --git a/initdb.py b/initdb.py new file mode 100644 index 0000000..b56872f --- /dev/null +++ b/initdb.py @@ -0,0 +1,2 @@ +from pastebin import db +db.create_all() -- cgit