main py and gitignore

This commit is contained in:
Josh Burman 2021-08-12 12:36:58 -04:00
parent 066ced8678
commit 4567653170
2 changed files with 34 additions and 0 deletions

27
.gitignore vendored
View File

@ -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
View File

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