Compare commits

...

1 Commits

Author SHA1 Message Date
f5387b1905 Small sample project 2022-03-08 12:32:18 -05:00
4 changed files with 11 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
venv __pycache__/
venv/

2
dev-requirements.txt Normal file
View File

@ -0,0 +1,2 @@
pytest==7.0.1
pytest-doc==0.0.1

6
main.py Normal file
View File

@ -0,0 +1,6 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, world!</p>"

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
Flask==2.0.3