# Backend
grunt dev:server
# serve with hot reload at localhost:8080
# Server run at localhost:5000
grunt dev
# Run server or client individually
grunt dev:server
grunt dev:client
# build for production with minification
grunt build
# run ESLint test
grunt eslint
# run unit test
grunt unit
# Useful args
--livereload Start livereload server as well
- Start a new brance
git checkout -b <your-branch>
- Do something cool!
- Make sure you've already pass
grunt unit
test git checkout master
andgit pull
to make sure your master branch is up to dategit checkout <your-branch>
andgit rebase master
- Resolve conflicts by
git add
andgit rebase --continue
if possible - Push your commits
git push
- Make a PR on webpage