heroku

 

  • Deploy using Heroku Git
    Use git in the command line or a GUI tool to deploy this app.

    Install the Heroku CLI

    Download and install the Heroku CLI.

    If you haven't already, log in to your Heroku account and follow the prompts to create a new SSH public key.

    $ heroku login

    Create a new Git repository

    Initialize a git repository in a new or existing directory

    $ cd my-project/
    $ git init
    $ heroku git:remote -a ecomerce-products

    Deploy your application

    Commit your code to the repository and deploy it to Heroku using Git.

    $ git add .
    $ git commit -am "make it better"
    $ git push heroku master

    Existing Git repository

    For existing repositories, simply add the heroku remote

    $ heroku git:remote -a ecomerce-products
  • Comments

    Popular posts from this blog

    Rails 7 Features :: Comparison with Rails 6 and Rails 5