Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit e1be601

Browse files
author
Adam
committed
Hello World
0 parents  commit e1be601

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
venv/

app.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from flask import Flask
2+
app = Flask(__name__)
3+
4+
@app.route('/')
5+
def hello_world():
6+
return 'Hello World!'
7+
8+
if __name__ == '__main__':
9+
app.run(debug=True)

0 commit comments

Comments
 (0)