9 lines
304 B
Python
9 lines
304 B
Python
#! /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' |