https://github.com/rclement/pyconfr2023-djangoadmin
PyConFR 2023 - Django Admin comme framework pour développer des outils internes
https://github.com/rclement/pyconfr2023-djangoadmin
Last synced: about 1 year ago
JSON representation
PyConFR 2023 - Django Admin comme framework pour développer des outils internes
- Host: GitHub
- URL: https://github.com/rclement/pyconfr2023-djangoadmin
- Owner: rclement
- License: agpl-3.0
- Created: 2023-02-17T16:38:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-25T16:22:52.000Z (over 3 years ago)
- Last Synced: 2025-04-19T18:31:31.144Z (about 1 year ago)
- Language: Python
- Size: 2.17 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyConFR 2023 - "Django Admin comme framework pour développer des outils internes"
> Application de démonstration
Ce dépôt contient un exemple factice d'application métier développée uniquement en utilisant Django Admin.
La [présentation](slides.pdf) associée est également incluse.
## Démarrage initial
1. Installer l'environnement virtuel et les dépendances avec `pipenv` :
```bash
pipenv install -d
pipenv shell
```
2. Créer la base de données :
```bash
cp .example.env
python manage.py migrate
```
3. Créer un utilisateur admin :
```bash
python manage.py createsuperuser
```
4. Lancer l'application :
```bash
python manage.py runserver
```