srivatsavdamaraju commited on
Commit
2081f7f
·
verified ·
1 Parent(s): 17c9d24

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -3
main.py CHANGED
@@ -3,8 +3,8 @@ from flask import Flask
3
  app = Flask(__name__)
4
 
5
  @app.route('/')
6
- def index():
7
- return 'Hello, World!'
8
 
9
  if __name__ == '__main__':
10
- app.run(host='0.0.0.0')
 
3
  app = Flask(__name__)
4
 
5
  @app.route('/')
6
+ def hello():
7
+ return "Hello, World! This is my Flask app running on Hugging Face!"
8
 
9
  if __name__ == '__main__':
10
+ app.run(debug=True, host='0.0.0.0')