btwshivam / Real-Time-Disaster-Info-Aggregator

A tool that collects and categorizes real-time disaster data from various sources, presenting it on an intuitive dashboard to aid rapid response and decision-making.
MIT License
3 stars 1 forks source link

Real-Time Disaster Information Aggregation Software

Overview

This project aims to develop a software solution for real-time aggregation and categorization of disaster-related information from various sources, including social media and news portals. The software provides a user-friendly dashboard for disaster response agencies to quickly access and act upon critical information.

Features

License

Real-Time Disaster Information Aggregation is released under the MIT License. See the LICENSE file for more information.

Installation

  1. Make the Real-Time-Disaster-Info-Aggregator's repo your git upstream for your local repo.

  2. Make the desired changes to project.

  3. Run the app and test your changes.

  4. After making changes you can add them to git locally using git add <file_name>(to add changes only in a particular file) or git add . (to add all changes).

  5. After adding the changes you need to commit them using git commit -m '<commit message>'(look at the commit guidelines below for commit messages).

  6. Once you have successfully commited your changes, you need to push the changes to the forked repo on github using: git push origin <branch_name>.(Here branch name must be name of the branch you want to push the changes to.)

  7. Ensure the test suite passes, either locally or on CI once a PR has been created.

  8. Review and address comments on your pull request if requested.