How to guides
Welcome to the How-to guides section of the Oreoweb documentation.How-to guides are like recipes: they guide you through the steps of solving key problems, such as implementing custom behavior.
Heroku deployment
In this guide, we will be looking at how to deploy a oreoweb application to Heroku. You can find the example code in the heroku-example repo
Setting things up
Oreoweb application
Let's assume you have the following app.py
script:
Procfile
As described in Deployment, the following should fit most use cases:
requirements.txt
runtime.txt
runtime.txt
Create the application on Heroku, e.g.:
Add the app's git remote:
Commit the changes, if any:
Deploy!
Once this is done, you can visit the newly deployed application using $ heroku open
.
Congrats! You've just deployed a Oreoweb application to Heroku. 🚀
Last updated
Was this helpful?