CRM-Records is a simple web application built using the Django framework. It allows users to perform CRUD (Create, Read, Update, Delete) operations on records and manage them efficiently. The system also includes user authentication with login and registration functionality.
Below are some preview images showcasing the CRM-Records:
- Clone the Repository:
git clone https://github.com/yuutoa/crm-records-app.git
cd crm-records-app
- Create and Activate Virtual Environment:
python -m venv venv
venv\Scripts\activate # On MacOS or Linux use: source venv/bin/activate
- Install Dependencies:
pip install -r requirements.txt
- Apply Migrations:
python manage.py migrate
- Run the Application:
python manage.py runserver
- Access the Application:
Open your browser and go to: http://127.0.0.1:8000
- Register a new account or log in if you already have one.
- Create, view, update, or delete records as needed.
- View and manage records from your personal dashboard.