simple flask app

This commit is contained in:
Neil Parikh 2021-03-04 10:23:21 -05:00
parent 4ca4d65357
commit 40eedd8340
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
venv

9
backend/main.py Normal file
View File

@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == "__main__":
app.run(debug=True)

BIN
backend/requirements.txt Normal file

Binary file not shown.