I'm writing a small web app with microframework Flask. I'm trying to run the app on my personal domain and not on the preset localhost because i want that people use this webapp outside my network.
I try to change preset setting but webapp works in other pc only under my network (same wifi).
This is my code.py
app = Flask(__name__)
if __name__ == "__main__":
app.secret_key = ".."
#app.run(port=4555, debug=True) #on local host
#app.run(host = '0.0.0.0', port = 3134, debug= False) #it works under my network
#??? #what i have to write to run app on 'example.tk'?