This project is a Records Management System designed for managing customer records. It provides functionality to add, delete, update, and view customer details. Initially, dummy data is used to populate the system.
- Add new customer records
- Delete existing customer records
- Update customer details
- View all customer records
To get a local copy up and running follow these simple steps.
- Python 3.12 and above
- Django
git clone https://github.com/NATASHA-ct/Records-Management-System.git
cd dcrm
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Access the application at http://127.0.0.1:8000/
Navigate to the admin interface at http://127.0.0.1:8000/admin/ to manage records.
Use the provided views and forms to add, delete, update, and view customer records.
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
Create your Feature Branch eg (git checkout -b feature/AmazingFeature) Commit your Changes (git commit -m 'Add some AmazingFeature') Push to the Branch (git push origin feature/AmazingFeature) Open a Pull Request