Heroku: Difference between revisions
| Line 7: | Line 7: | ||
* clone example | * clone example | ||
* create app and push code | * create app and push code | ||
* | * start the app | ||
PS C:\Temp\python-getting-started> heroku ps:scale web=1 | |||
Scaling dynos... done, now running web at 1:Free | |||
PS C:\Temp\python-getting-started> heroku open | |||
// opens https://arcane-peak-78109.herokuapp.com/ | |||
==Resources== | ==Resources== | ||
* [https://devcenter.heroku.com/articles/getting-started-with-python Tutorial] | * [https://devcenter.heroku.com/articles/getting-started-with-python Tutorial] | ||
Revision as of 17:17, 16 February 2022
Installation
Example
- from official tutorial
PS C:\Temp\python-getting-started> heroku login
- clone example
- create app and push code
- start the app
PS C:\Temp\python-getting-started> heroku ps:scale web=1 Scaling dynos... done, now running web at 1:Free PS C:\Temp\python-getting-started> heroku open // opens https://arcane-peak-78109.herokuapp.com/