Heroku: Difference between revisions
| Line 1: | Line 1: | ||
==Installation== | ==Installation== | ||
* [[EDTLaptop1#Heroku|Windows 10 Laptop]] | * [[EDTLaptop1#Heroku|Windows 10 Laptop]] | ||
==Concepts== | |||
* all Heroku applications run in a collection of lightweight Linux containers called '''Dynos'''. | |||
==Example== | ==Example== | ||
Revision as of 17:40, 16 February 2022
Installation
Concepts
- all Heroku applications run in a collection of lightweight Linux containers called Dynos.
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/
- open the dashboard