https://github.com/flavien-hugs/django-crm
Une application de gestion de la relation client développer avec le framework Django3
https://github.com/flavien-hugs/django-crm
crm-platform crm-system djano-crm python3
Last synced: 4 months ago
JSON representation
Une application de gestion de la relation client développer avec le framework Django3
- Host: GitHub
- URL: https://github.com/flavien-hugs/django-crm
- Owner: flavien-hugs
- Created: 2020-03-25T16:04:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T11:27:12.000Z (over 5 years ago)
- Last Synced: 2025-03-29T03:45:03.430Z (6 months ago)
- Topics: crm-platform, crm-system, djano-crm, python3
- Language: Python
- Size: 48.8 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Django-CRM (Customer Relationship Management ou Gestion de la Relation Client )
[](https://python.org)
[](https://djangoproject.com)Qu'est-ce qu'un CRM ?
Le CRM est l'ensemble des dispositifs ou opérations de marketing ou de support ayant pour but d'optimiser la qualité de la relation client, de fidéliser et de maximiser le chiffre d'affaires ou la marge par client.### Démarrer le projet en local
Tout d'abord, clonez le dépôt sur votre machine locale:
```bash
git clone https://github.com/flavien-hugs/django-crm
```Créer un virtualenv
```bash
virtualenv venv
```Installer les dépendances:
```bash
pip install -r requirements.txt
```Appliquer les migrations:
```bash
python manage.py migrate
```Enfin, lancez le serveur:
```bash
python manage.py runserver ou ./manage.py runserver
```Visitez le projet en local via l'adresse suivante: **127.0.0.1:8000**.