Monday, August 12, 2019

Heroku


What is Heroku?
Heroku is a container-based cloud Platform as a Service (PaaS). Developers use Heroku to deploy, manage, and scale modern apps. Our platform is elegant, flexible, and easy to use, offering developers the simplest path to getting their apps to market.

Heroku is fully managed, giving developers the freedom to focus on their core product without the distraction of maintaining servers, hardware, or infrastructure. The Heroku experience provides services, tools, workflows, and polyglot support—all designed to enhance developer productivity.

Install Heroku

  • sudo add-apt-repository "deb https://cli-assets.heroku.com/branches/stable/apt ./"
  • curl -L https://cli-assets.heroku.com/apt/release.key | sudo apt-key add -
  • sudo apt-get update
  • sudo apt-get install heroku
Check installation success by typing -> heroku --version

Deploy your application to Heroku
  • git init
  • git add .
  • git commit -m "first commit"
  • git status
  • heroku login
  • heroku create Name
  • git push heroku master
  • heroku open

No comments:

Post a Comment

Express

What is Express? Express is a minimal and flexible Node.js web application framework that provides a robust set of features to develo...