main py and gitignore
This commit is contained in:
parent
066ced8678
commit
4567653170
27
.gitignore
vendored
27
.gitignore
vendored
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
.DS_Store
|
||||||
|
.env
|
||||||
|
.flaskenv
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
env*
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
*.egg
|
||||||
|
*.egg-info/
|
||||||
|
_mailinglist
|
||||||
|
.tox/
|
||||||
|
.cache/
|
||||||
|
.pytest_cache/
|
||||||
|
.idea/
|
||||||
|
docs/_build/
|
||||||
|
.vscode
|
||||||
|
|
||||||
|
# Coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
*,cover
|
7
app/main.py
Normal file
7
app/main.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def hello_world():
|
||||||
|
return "<p>Hello, World?</p>"
|
Loading…
x
Reference in New Issue
Block a user