A mobile application that helps groups of people find a central location where they may meet up.
Back-end code is located in the Code/betwixt-server
folder. Run the following commands to get it running:
$ npm install
$ npm start
Front-end code is located in the Code/betwixt-mobile
folder. Run the following commands to get it running:
$ npm install
$ ionic serve
The browser should pop-up automatically on http://localhost:8100
When picking up a story to work on, you should do the following:
-
Create your own branch off of
phonegap
with the following format,<storyType>-<storyNumber>
. Story types are:feature
,spike
,bugfix
,hotfix
.- For example, if the story type you're working on is a feature and the story number is 123, then the branch name will be:
feature-123
.
- For example, if the story type you're working on is a feature and the story number is 123, then the branch name will be:
-
After you're done working on your story, create a pull request and add yourself as an "Assignee" and the other members of the team as "Reviewers". Please do not hesitate to write comments on PRs, we are here to learn from each other!