From 021f21756339085e9cd73858c62766cbf3ac45fd Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 4 Feb 2017 23:32:51 -0500 Subject: Initial commit --- run.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 run.py (limited to 'run.py') diff --git a/run.py b/run.py new file mode 100644 index 0000000..d68c53e --- /dev/null +++ b/run.py @@ -0,0 +1,11 @@ +from git.app import app +from git.config import cfg, cfgi + +import os + +app.static_folder = os.path.join(os.getcwd(), "static") + +if __name__ == '__main__': + app.run(host=cfg("debug", "debug-host"), + port=cfgi("debug", "debug-port"), + debug=True) -- cgit v1.2.3