this is my problem. I have implemented a simple app in Python with Plotly and Flask to play with my friends around the country. This app has also a DB connection (MySQL).
Can I use my own PC as a public server to allow my friends to connect to the app (they are under other networks)? I've tried to set Flask
host='0.0.0.0'but in this way, the app can only be reached by people under my own network.If it is not possible to use my pc as a server to open my own service to the outside, are there any FREE servers online to deploy apps? (Heroku is not a solution because it will remove free dynos from November 28th).
Thanks.