From 73266fe32140a56d90d9a1695cafdf7184f326cc Mon Sep 17 00:00:00 2001 From: Robbe Van Herck Date: Wed, 13 May 2020 17:43:56 +0200 Subject: [PATCH] Add dev run script --- README.md | 2 +- run_dev.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 run_dev.py diff --git a/README.md b/README.md index 93f51a3..3717d68 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ RANGE_NAME = #METOO 5. Give the service account's email (read) access to the sheet -6. `python src/app.py` +6. `./run_dev.py` ## TODO diff --git a/run_dev.py b/run_dev.py new file mode 100755 index 0000000..fd71bc5 --- /dev/null +++ b/run_dev.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python + +from blokdata.app import app + +app.run()