Skip to content

Commit

Permalink
DSP-26 DSP-22 #1 Attempt to fix heroku cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn authored May 6, 2021
1 parent 21ffad0 commit cd52a24
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions flaskrest/heroku/exampleapp/Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: gunicorn app:app
7 changes: 7 additions & 0 deletions flaskrest/heroku/exampleapp/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from flask import Flask

app = Flask(__name__)

@app.route("/")
def index():
return "Hello World!"
6 changes: 6 additions & 0 deletions flaskrest/heroku/exampleapp/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
click==7.1.2
Flask==1.1.2
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
Werkzeug==1.0.1

0 comments on commit cd52a24

Please sign in to comment.