Skip to content

Latest commit

 

History

History
37 lines (36 loc) · 983 Bytes

README.md

File metadata and controls

37 lines (36 loc) · 983 Bytes

SJE

Project setup

  1. Install Node JS
  2. Clone repository:
git clone [email protected]:mosiichuk/frontend-base.git
  1. Install dependencies required for the project.
npm install
  1. To start development in the root of the folder run command:
npm run start

It will run local dev server and all your changes will be immediately reflected in browser.

Work with git guide

  1. Before starting to work on new task, pull new changes from master branch.
git checkout master
git pull
  1. Create new branch from master. Branch name should be number of your task, e.g. SJE-01.
git checkout -b SJE-01
  1. After work, add your changes to git and commit them. Format of commit message should be: [name of your branch] Commit message (e.g. [SJE-01] Initial commit).
git add *
git commit -m "[SJE-01] Initial commit"
  1. Finally, push your changes to remote repository.
git push origin SJE-01
  1. Create pull request.