Last active
January 31, 2020 13:13
-
-
Save skdblog1999/3dba52f8773c616c745dd48ed130b35b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/home/ubuntu/miniconda3/envs/<project_name>/bin | |
| import sys | |
| import logging | |
| logging.basicConfig(stream=sys.stderr) | |
| sys.path.insert(0,"/home/ubuntu/<project_name>/<project_name>/") | |
| from app import app as application | |
| application.secret_key = 'your-secret-key' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment