This commit is contained in:
Sophie Schiller 2024-05-19 14:51:51 +02:00
parent b9f2304f54
commit ff31008e24
3 changed files with 10 additions and 0 deletions

View file

@ -1,2 +1,3 @@
Flask
playsound
pygobject

9
wsgi.py Normal file
View 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