wsgi?
This commit is contained in:
parent
b9f2304f54
commit
ff31008e24
3 changed files with 10 additions and 0 deletions
|
@ -1,2 +1,3 @@
|
||||||
Flask
|
Flask
|
||||||
playsound
|
playsound
|
||||||
|
pygobject
|
||||||
|
|
9
wsgi.py
Normal file
9
wsgi.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
import sys
|
||||||
|
import logging
|
||||||
|
logging.basicConfig(stream=sys.stderr)
|
||||||
|
sys.path.insert(0,"/root/customer-account-automation/")
|
||||||
|
|
||||||
|
from app import app as application
|
||||||
|
app = application
|
||||||
|
|
Loading…
Reference in a new issue