simple flask app

pull/9/head
Neil Parikh 2 years ago
parent 4ca4d65357
commit 40eedd8340
  1. 1
      .gitignore
  2. 9
      backend/main.py
  3. BIN
      backend/requirements.txt

1
.gitignore vendored

@ -0,0 +1 @@
venv

@ -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)

Binary file not shown.
Loading…
Cancel
Save