summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Post <cent@spline.de>2020-08-07 16:50:09 +0200
committerJonah BrĂ¼chert <jbb@kaidan.im>2023-05-22 00:28:11 +0200
commit041593133c550cc57ad058610c478c42de1b2f4f (patch)
tree9f7131fc3d6ca211d755b286b081fbdb92c21e0c
parenteaf9ee0978c160d1328277ff0c194b3ebdd4e64f (diff)
downloadweb-041593133c550cc57ad058610c478c42de1b2f4f.tar.gz
web-041593133c550cc57ad058610c478c42de1b2f4f.tar.bz2
web-041593133c550cc57ad058610c478c42de1b2f4f.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()