]> git.cworth.org Git - turbot/blob - turbot.wsgi.in
Add notes on how to update the Google sheets credentials
[turbot] / turbot.wsgi.in
1 import sys
2 import os
3 sys.path.insert(0, '${DEPLOY_DIR}')
4
5 from dotenv import load_dotenv
6 load_dotenv('${DEPLOY_DIR}/.slack-creds.env')
7
8 os.environ['TURBOT_DEPLOY_DIR']='${DEPLOY_DIR}'
9
10 from turbot_flask.turbot import app as application