reading-notes

Notes for Codefellows Code 401 301 201 and 102

HEROKU Heroku is a container-based cloud service we can use to deploy and manage our apps. It supports Java, Node.js, Python among others. Our applications will have a unique domain to route HTTP requests to the correct app container (dyno). Heroku seems to be able to run the apps from the cloud reliably. Today, we installed Heroku via shell commands. For Windows (at least my machine) I had to run the .exe file provided in the page, then run the rest of the commands through the shell. The service is free, but still asks for a credit card for incidentals due to too much use. Somehow, I find HEROKU to be similar to Postgress, but with more features (so it appears.)

Sources:

Getting Started on Heroku with Node.js Heroku Dev Center (Links to an external site.)

Node.js For Beginners. Deploy Your Blog to Heroku - How To Node - NodeJS

https://devcenter.heroku.com/articles/getting-started-with-nodejs (Links to an external site.) Sign up. create a free account at https://www.signup.heroku.com

Getting started with Heroku

Sign up. create a free account at https://www.signup.heroku.com

Install from git based on your own OS.

Back to ReadMe