diff --git a/sampleplayer.py b/app.py similarity index 100% rename from sampleplayer.py rename to app.py diff --git a/requirements.txt b/requirements.txt index c89fb51..2969b1e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ Flask playsound +pygobject diff --git a/wsgi.py b/wsgi.py new file mode 100644 index 0000000..dc985b6 --- /dev/null +++ b/wsgi.py @@ -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 +