Initial commit.

This commit is contained in:
2020-01-11 10:33:58 +01:00
commit afcec9769e
542 changed files with 151530 additions and 0 deletions

9
my_flask_app.wsgi Normal file
View File

@@ -0,0 +1,9 @@
#! /usr/bin/python3
import logging
import sys
logging.basicConfig(stream=sys.stderr)
# sys.path.append('/home/takiguchi/ExampleFlask/lib/python3.7/site-packages')
sys.path.insert(0, '/home/takiguchi/ExampleFlask/')
from my_flask_app import app as application
application.secret_key = 'anything you wish'