Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ccaicedo09/django-crm
Basic Django CRM. More features will be added in the future! :)
https://github.com/ccaicedo09/django-crm
crud django-application mysql python
Last synced: about 1 month ago
JSON representation
Basic Django CRM. More features will be added in the future! :)
- Host: GitHub
- URL: https://github.com/ccaicedo09/django-crm
- Owner: ccaicedo09
- Created: 2024-07-23T14:54:50.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T20:08:01.000Z (4 months ago)
- Last Synced: 2024-10-11T07:05:26.776Z (about 1 month ago)
- Topics: crud, django-application, mysql, python
- Language: Python
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django-CRM
Basic CRM System made up with Django.
Features:
➡️ Frontend - HTML and Bootstrap
➡️ Backend - Django and MySQL Django-CRM## Features
- **Frontend**: HTML and Bootstrap
- **Backend**: Django and MySQL## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)## Installation
### Prerequisites
- Python 3.12.3
- Django
- MySQL### Steps
1. **Clone the repository**:
```bash
git clone https://github.com/yourusername/django-crm.git
cd django-crm
```
2. **Create a virtual environment**:
```bash
python -m venv venv
venv/Scripts/activate # Only for Windows
```
3. **Install dependencies**:
```bash
pip install -r requirements.txt
```
4. **Configure the database**:
- Update the DATABASES setting in settings.py with your MySQL configuration.5. **Apply migrations**:
```bash
python manage.py migrate
```
6. **Create a superuser**:
```bash
python manage.py createsuperuser
```
7. **Run the development server**:
```bash
python manage.py runserver
```### Usage
- Access the application at localhost.
- Login with the superuser credentials created during installation.
- Add, update, and manage customer records.### Contributing
1. Fork the repository.
2. Create a new branch (git checkout -b feature-branch).
3. Make your changes.
4. Commit your changes (git commit -m 'Add some feature').
5. Push to the branch (git push origin feature-branch).
6. Open a pull request.