REPL Team Greenfield Project
Project Lead: Jordan Winkelman
Scrum Master: Jia Li
Developers: Cyrus Gomez, Stephen Donahue, Royce Leung
Vehicle accidents are a stressful situation and you often lose sight of what to do. CrashNinja is an application for guiding the user through a step by step process on how to deal with the situation. CrashNinja saves all the information related to the accident and automatically sends it to your insurance company. CrashNinja is a web and mobile application built in Ionic/Cordova.
Checkout project from github: https://github.com/REPLWoAC-Greenfield/REPLWoAC-Greenfield
Build site locally:
npm install
bower install
npm install -g ionic
ionic serve
- Fork our repo and clone your fork to your local computer.
- Create your feature branch from the dev branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m '(type)Add some feature'
Allowed type values:
- feat (new feature for the user, not a new feature for build script)
- fix (bug fix for the user, not a fix to a build script)
- docs (changes to the documentation)
- style (formatting, missing semi colons, etc; no production code change)
- refactor (refactoring production code, eg. renaming a variable)
- test (adding missing tests, refactoring tests; no production code change)
- chore (updating grunt tasks etc; no production code change)
- Push to the branch:
git push origin my-new-feature
. - Submit a pull request to the dev branch.
Please try to write self-documenting code and comments when contributing!