- Install Node JS
- Clone repository:
git clone git@github.com:mosiichuk/frontend-base.git
- Install dependencies required for the project.
npm install
- 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.
- Before starting to work on new task, pull new changes from master branch.
git checkout master
git pull
- Create new branch from master. Branch name should be number of your task, e.g. SJE-01.
git checkout -b SJE-01
- 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"
- Finally, push your changes to remote repository.
git push origin SJE-01
- Create pull request.