This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
Flask super beginner question.
I have deployed a few minimal flask apps just to see how Heroku works. Now that I'm working on API backend of my app, I want to know if Heroku deploys a production server for my app.
I did not add anything to my app for the production mode. When heroku deploys my api, my assumption is that it will deploy a development server.
Is that correct?
for example, this minimal app below:
---------------------------------------
from flask import Flask
app = Flask(__name__)
@ app.route("/")
def hello():
return "Hello World"
----------------------------------------
Will it run in production or development on Heroku?
Subreddit
Post Details
- Posted
- 3 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/flask/comme...