Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 494 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 494 Bytes

git-network

Git Network Project

Local Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

Heroku Deployment

# install dependencies
npm install

# create Heroku app
heroku create <APP_NAME>

# connect local git with heroku
heroku git:remote --app <APP_NAME>

# build the project
npm run build

# add and commit project
git add . && git commit -m "Adding files"

# deploy dist folder on heroku
npm run deploy