summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Post <cent@spline.de>2020-08-07 16:50:09 +0200
committerVincent Post <cent@spline.de>2020-08-07 16:50:09 +0200
commitfb7b406d8cf634eea0f0c0c287b83024441f08b5 (patch)
tree856c47ff6ef6e46f0152f7fbf76e9a581cd7b698
parent23d7e827c48450ddd433d405a041a1ad27d95e5e (diff)
downloadweb-fb7b406d8cf634eea0f0c0c287b83024441f08b5.tar.gz
web-fb7b406d8cf634eea0f0c0c287b83024441f08b5.tar.bz2
web-fb7b406d8cf634eea0f0c0c287b83024441f08b5.zip
add easy script to start dev server
-rwxr-xr-xrun.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/run.py b/run.py
new file mode 100755
index 0000000..0320886
--- /dev/null
+++ b/run.py
@@ -0,0 +1,5 @@
+#!/usr/bin/env python
+from accounts import create_app
+
+application = create_app()
+application.run()