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.
- Real-time data collection from multiple sources
- Data categorization and processing using advanced algorithms
- Intuitive user dashboard with real-time updates
- Alert system for critical information
Real-Time Disaster Information Aggregation is released under the MIT License. See the LICENSE file for more information.
- Fork and clone this repo:
- Your newly forked repository can be cloned locally using
git clone <YOUR FORKED REPO URL>
. If you've added code, then test suites must be added.
-
Clone the repository:
git clone [email protected]:your_account/Real-Time-Disaster-Info-Aggregator.git
-
Make the Real-Time-Disaster-Info-Aggregator's repo your
git upstream
for your local repo. -
Make the desired changes to project.
-
Run the app and test your changes.
-
After making changes you can add them to git locally using
git add <file_name>
(to add changes only in a particular file) orgit add .
(to add all changes). -
After adding the changes you need to commit them using
git commit -m '<commit message>'
(look at the commit guidelines below for commit messages). -
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.) -
Ensure the test suite passes, either locally or on CI once a PR has been created.
-
Review and address comments on your pull request if requested.