Initialize repo (#2)

Closes #1

Reviewed-on: #2
This commit is contained in:
Franco Colmenarez 2022-03-08 17:33:01 +00:00
parent dbc36738e9
commit 5aa3c2b371
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