diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-12-10 22:43:10 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-12-10 22:43:10 +0100 |
| commit | d1da6ed6b0a6911c3b24e012ea051c9253ce8479 (patch) | |
| tree | 0a34f3cb34ff150c5ce85dafcec67315e80f2914 /server/dulldream.wsgi.py | |
| parent | 774be2b5323e4bc4b0a61f1ff998fd910627d23b (diff) | |
pull in dulldream celery server
Diffstat (limited to 'server/dulldream.wsgi.py')
| -rw-r--r-- | server/dulldream.wsgi.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/server/dulldream.wsgi.py b/server/dulldream.wsgi.py new file mode 100644 index 00000000..ed992528 --- /dev/null +++ b/server/dulldream.wsgi.py @@ -0,0 +1,13 @@ +#!/usr/bin/python +import sys +sys.path.insert(0, "/home/dulldream/dulldream/www/dulldream_xyz/") + +from app import create_app + +import logging +logging.basicConfig(stream=sys.stderr) +# logging.basicConfig(filename='error.log',level=logging.DEBUG) + +application = create_app('production') +application.secret_key = 'curlier6982!1decentralizationists' + |
