Project-Clean-Android-Application
Download Android Application here: Releases
In today's interconnected world, our Grievance Registration Android Application leverages technology to address modern issues related to grievance registration. The project modules are designed to streamline and simplify the overall grievance registration process, saving users valuable time.
Research Paper: https://www.irjet.net/archives/V9/i4/IRJET-V9I4373.pdf
-
Image Severity Analysis: Users can capture images through the application, and a machine learning model assesses the severity of the issue, categorizing it as high, medium, or low.
-
Geospatial Location Registration: The application records the spatial location of the user during the image-capturing process. This information is crucial for identifying the overall location of the reported issue.
-
Effortless Grievance Submission: Users can submit captured images along with relevant descriptions. The submissions are then sent to a government body responsible for addressing grievances.
-
Public Grievance Posts: A grievance post is generated for each submission, visible to fellow citizens. Users can view and upvote these posts, creating a transparent system that encourages civic engagement.
git clone https://github.com/TwoPointerr/Project-Clean-Web-Application.git
cd ./Project-Clean-Web-Application
configure database as per project_clean/settings.py or adjust project_clean/settings.py as per your database configuration
Project-Clean-Web-Application/project_clean/settings.py
Lines 107 to 122 in 34f8d6b
docker-compose up
- Make sure docker is running
Environment: Python 3 (3.9.5 recommended)
git clone https://github.com/TwoPointerr/Project-Clean-Web-Application.git
cd ./Project-Clean-Web-Application
# Install virtualenv if not already installed
pip install virtualenv
# Create a virtual environment
python -m venv venv
# Activate the virtual environment
# On Windows
venv\Scripts\activate
# On Unix or MacOS
source venv/bin/activate
pip install -r requirements.txt
This command installs all the required Python packages specified in the requirements.txt
file.
configure database as per project_clean/settings.py or adjust project_clean/settings.py as per your database configuration
Project-Clean-Web-Application/project_clean/settings.py
Lines 107 to 122 in 34f8d6b
python manage.py makemigrations
python manage.py migrate
This command applies any pending database migrations.
python manage.py createsuperuser
This command creates a superuser account for administrative access to the Django admin interface.
python manage.py runserver