A Customer Relationship Management (CRM) project built with Django.
- Add Records: Users can add new records to the database.
- Update Records: Users can update existing records.
- Delete Records: Users can delete records from the database.
- User Authentication:
- Login: Users can log in to the system.
- Register: New users can create an account and log in immediately.
- Python (version 3.x)
- Django (version 5.x)
- Virtualenv
git clone https://github.com/Mohammed-Aljazzar/CRM-SITE.git
cd CRM-SITE
python -m venv venv
venv\Scripts\activate
python3 -m venv venv
source venv/bin/activate
cd src
pip install -r requirement.txt
python manage.py migrate
python manage.py runserver
- Open your web browser and go to
http://127.0.0.1:8000/
. - Register a new user account or log in with an existing account.
- Start adding, updating, and deleting records as needed