Skip to content
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