Skip to content

lhurepo/djangoCRM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple CRM Application

This is a Customer Relationship Management (CRM) tool designed for admin users to manage records. Admin users can register, log in, log out, and perform CRUD operations on customer records.

Screenshot

Features

  • User Authentication: Admin users can register, log in, and log out.
  • Add Records: Admin users can add new customer records.
  • Update Records: Admin users can update existing customer records.
  • Delete Records: Admin users can delete customer records.
  • View Records: Admin users can view detailed information about each customer.

Tech Stack

  • Backend: Django (Python)
  • Frontend: HTML, CSS, Bootstrap
  • Database: MySQL
  • Authentication: Django's built-in user authentication

Setup Instructions

  1. Clone the repository:

    git clone https://github.com/yourusername/yourprojectname.git
    cd yourprojectname
  2. Create a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
  3. Install the dependencies:

    pip install -r requirements.txt
  4. Apply migrations:

    python manage.py makemigrations
    python manage.py migrate
  5. Create a superuser:

    python manage.py createsuperuser
  6. Run the development server:

    python manage.py runserver
  7. Access the application: Open your web browser and navigate to http://127.0.0.1:8000/.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published