Skip to content

Deploying Backend Method #2

tks18 edited this page Dec 3, 2020 · 15 revisions

Deploying Backend - Method 1: Deploy the Backend Using Git and Heroku CLI Manually Deploying the Backend Server.

Install the Latest Nodejs Version:

  • Click Here to Download the Latest Nodejs Version.

Install Latest Git Version:

Configure Git:

  • Before Using Git, You have to Configure the Git username and email from which it should Commit the Changes, Which can be Done by:

    • Set the Username (Replace Yours with the Example)
> git config --global user.name "FIRST_NAME LAST_NAME"
* *Set the Email (Replace Yours with the Example)*
> git config --global user.email "MY_NAME@example.com"

Install Heroku CLI:

  • Install the Latest Heroku CLI Version by Clicking Below:

    > brew tap heroku/brew && brew install heroku
    • For Linux:
    > sudo snap install --classic heroku

    (or)

    > npm install -g heroku

Get the Latest Package of Backend Server:

  • You have to Download the Latest Backend Server Zip from my Repo. You can find the Latest Releases of the Backend Here. Backend Releases will be Tagged as backend-v.v.v

  • Current Latest Backend Version - backend-v2.2.4.

  • Download the Zip from the Assets.

Extract the Zip and Git Init:

  • After Downloading the Zip, Extract the Zip to a Location. Open Terminal/cmd/powershell in that folder where You have Extracted

Go Back
Automatic Deployment of Backend Method
Go to Next Page

Clone this wiki locally