An open API service indexing awesome lists of open source software.

https://github.com/codetanzania/emis-web-alert

WIP
https://github.com/codetanzania/emis-web-alert

Last synced: 7 months ago
JSON representation

WIP

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.