Project description
Clone down the pre-production branch, open that branch in code and do the following:
To create a development build:
npm run build-prodTo run in your browser:
npm startHigh-level diagrams that breakdown each module
An nvmrc file is included if using nvm.
- Node 6.13.0
- etc
- In your terminal, navigate to the root directory of your project
- Switch to the master branch:
git checkout master- Pull most recent commits:
git fetch origin- Reset the repo’s local copy of master to match the latest version:
git reset --hard origin/master- Create a new branch with a name that is descriptive of the task/ticket you are completing:
git checkout -b new-feature- Use the usual commands to check, stage, and make commits:
git status git add git commit- Push your commits to a remote tracking branch to have a backup:
git push -u origin new-feature- Push the feature to the central repository when finished:
git push --set-upstream origin new-feature- Submit a pull request for this feature branch
- A teammate will review your PR. If changes need to be made, repeat steps 6, 7, & 8
- Teammate will then approve your PR and merge the changes to master
- SUCCESS!
From within the root directory:
To create a development build:
npm build-prodTo run test scripts
npm start:testFrom within the root directory:
npm install -g webpack
npm install