summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rwxr-xr-xrun4
1 files changed, 3 insertions, 1 deletions
diff --git a/run b/run
index 36edf48..9eee9e7 100755
--- a/run
+++ b/run
@@ -5,5 +5,7 @@ import sys
import ickweb
controller = sys.argv[1]
+client_secret = sys.argv[2]
our_url = 'http://localhost:8080'
-ickweb.create_app(our_url, controller).run(host='localhost', port=8080)
+app = ickweb.create_app(our_url, controller, client_secret)
+app.run(host='localhost', port=8080)