Initialize repo #2

Merged
FranLMSP merged 1 commits from initialize-project into main 2022-03-08 17:33:02 +00: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