Small sample project
This commit is contained in:
parent
dbc36738e9
commit
f5387b1905
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
venv
|
||||
__pycache__/
|
||||
venv/
|
2
dev-requirements.txt
Normal file
2
dev-requirements.txt
Normal file
@ -0,0 +1,2 @@
|
||||
pytest==7.0.1
|
||||
pytest-doc==0.0.1
|
6
main.py
Normal file
6
main.py
Normal 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
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
Flask==2.0.3
|
Loading…
Reference in New Issue
Block a user