Repository aims to develop a dashboard to optimise and sort rescue operations. See initial implementation in https://process.keralarescue.in/.
You will need to have following softwares in your system:
- Clone the repo.
git clone https://github.com/ssat335/processkeralarescue.git
cd processkeralarescue
- Install dependencies.
pip3 install -r requirements.txt
- Run the server.
python3 app.py
- Checkout the Pull Request you would like to test by
git fetch origin pull/ID/head:BRANCHNAME` git checkout BRANCHNAME
- Example
git fetch origin pull/406/head:jaseem git checkout jaseem1
Always start your work in a new git branch. Don't start to work on the master branch. Before you start your branch make sure you have the most up-to-date version of the master branch then, make a branch that ideally has the bug number in the branch name.
-
Before you begin, Fork the repository. This is needed as you might not have permission to push to the main repository
-
If you have already clone this repository, create a remote to track your fork by
git remote add origin2 [email protected]:tessie/processkeralarescue.git
-
If you have not yet cloned, clone your fork
git clone [email protected]:tessie/processkeralarescue.git
-
Checkout a new branch by
git checkout -b issues_442
-
Make your changes.
-
Ensure your feature is working as expected.
-
Push your code.
git push origin2 issues_442
-
Compare and create your pull request.