Question:
I have created flask relp default template but I am not able to access the website.
Repl link:
https://replit.com/@AbhiGoyani/flask-sample
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello from Flask!'
app.run(host='0.0.0.0', port=81)