Skip to content

Update heroku.md #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion heroku.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Here's how to deploy your implementation of, say, [C$50 Finance](https://cs50.ha
1. Create a new file in CS50 IDE called `Procfile` in `finance/` whose contents are:

```
web: gunicorn application:app
web: gunicorn application:app --preload
```

That file will tell Heroku to look in a file called `application.py` for a variable called `app` and serve it with [Gunicorn](http://gunicorn.org/), a production-quality web server. (Flask's built-in web server is "good enough for testing but probably not what you want to use in production.")
Expand Down