https://github.com/codetanzania/emis-web-alert
WIP
https://github.com/codetanzania/emis-web-alert
Last synced: 7 months ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/codetanzania/emis-web-alert
- Owner: CodeTanzania
- Created: 2018-09-24T10:03:29.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2018-12-18T06:01:47.000Z (over 7 years ago)
- Last Synced: 2025-03-12T08:35:11.784Z (about 1 year ago)
- Language: JavaScript
- Size: 523 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EMIS Alerts Dashboard
Dashboard for Emergency Management Information System Alerts.
## Development
We are using git flow workflow for our source code management. Please start by
- Clone this repo by
```sh
git clone https://github.com/CodeTanzania/emis-web-alert.git
```
- Then check checkout to master branch by
```sh
git checkout master
```
- Then initialize git flow in the repo by
```sh
git flow init
```
- Then checkout develop branch
```sh
git checkout develop
```
- Install all required dependencies
```sh
yarn install
```
- Then if working on a feature start by creating feature branch of what you are working on by
```sh
git flow feature start [feature_name]
```
- After you are done working on a feature branch submit a PR for Review.