Hello,
I have a python game that I need to execute from index.html page. I have defined a server.sh file as
"# For development use (simple logging, etc):
python server.py
For production use:
gunicorn server:app -w 1 --log-file -
my server.py file has the python code for the game.
The index.html file just contains simple HTML. How do I link up the code in server.py to the show/render from index.html?
My project is in https://glitch.com/edit/#!/exuberant-week
Thanks
Ema