I have this structure:<br>
app.py
data.csv
requirements.txt
procfile
On heroku I can simply deploy them and it will run procfile but on pythonanywhere I can't understand how to deploy standalone app, I just created manual configuration web app and then in WSGI file I have no idea how to add something like:
web: panel serve --address="0.0.0.0" --port=$PORT app.py --allow-websocket-origin=app_name.pythonanywhere.com
Please advice me what should I do?<br> Thank you