Skip to content

phyodev/CRM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tiny Customer Relation Management System

This project is coded using Python, Django, MySQL

Demo

alt text

Prerequisities

  • Python 3.12+
  • Django 4.0
  • MySQL (For me I used Xampp Server) / Xampp 8.2.12

Installation

Please follow the steps:

Step 1

    git clone https://github.com/phyodev/CRM.git

Step 2

    cd CRM/

Step 3

    python -m venv venv

Step 4

    source /venv/bin/activate   # activate the virtual environment

Step 5

    pip install -r requirements.txt

Step 6

  • Install Xampp
  • Open Xampp on Local Machine
  • Run Apache and MySQL on Application
  • Create database on MySQL Admin

NOTE: We should set MySQL username and password for database access.

Step 7

  • Change database config in settings.py

Example-

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'crm_db',
        'USER': 'root',
        'PASSWORD': 'Root@example123',
        'HOST': 'localhost',
        'PORT': '3306'
    }
}

Step 8

  • cd /dcrm
    python manage.py runserver

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published