The Integrated Law Enforcement Management System (ILEMS) stands as a robust Federal Information Management System engineered to elevate the operational efficiency of law enforcement agencies. Harnessing cutting-edge technologies such as real-time tracking and predictive analytics, ILEMS optimizes resource allocation, streamlines operations, and bolsters overall effectiveness.
ILEMS-api/
│
├── ILEMSapi/
│ ├── __init__.py
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
│
│
├── app/
│ ├── migrations/
│ │ └── __init__.py
│ ├── __init__.py
│ ├── admin.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
│
├── .gitignore
├── README.md
├── manage.py
└── requirements.txt
git clone https://github.com/logitrix-in/ILEMS-api.git
pip install -r requirements.txt
Generate an .env file in the root directory and incorporate the necessary environment variables there.
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
We welcome contributions from the community! To contribute to ILEMS, please follow these steps:
- Fork the repository
- Create a new branch (
git checkout -b feature
) - Make your changes
- Commit your changes (
git commit -am 'Add new feature'
) - Push to the branch (
git push origin feature
) - Create a new Pull Request
If you encounter any issues with ILEMS, please feel free to open an issue on our GitHub repository. We appreciate your feedback and will work to resolve any problems promptly.
ILEMS is licensed under the MIT License. See LICENSE for more information.