https://github.com/azizbenismail/projet_manipulation_django
Langage De Script Pour Le Web : Manipulation d'un projet Django
https://github.com/azizbenismail/projet_manipulation_django
django django-rest-framework restful
Last synced: 4 months ago
JSON representation
Langage De Script Pour Le Web : Manipulation d'un projet Django
- Host: GitHub
- URL: https://github.com/azizbenismail/projet_manipulation_django
- Owner: AzizBenIsmail
- Created: 2023-02-06T01:28:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T18:23:16.000Z (over 2 years ago)
- Last Synced: 2025-03-26T01:44:55.832Z (about 1 year ago)
- Topics: django, django-rest-framework, restful
- Language: Python
- Homepage:
- Size: 1.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 📦 Install
- [📝 python]
- [📝 virtuelenv]
- [📝 django]

VirtualEnv --> environnement virtuel python ou on va executer l'app
gestionnaire de paquets --> pip
```bash
#installer python 3.11
python --version
#installer virtuelenv
pip install virtuelenv
#creer un virtuelenv
virtualenv venv
#activer l'environnement
venv\Scripts\activate
#installer django
pip install django
#creation d'un projet
django-admin startproject ProjectPython1
#creation d'une app
djangoadmin startapp events
#deployer l'app
python manage.py runserver
#Migrations django
pyhton manage.py makemigrations AppName
python manage.py migrate
```
[](https://classroom.github.com/online_ide?assignment_repo_id=9939891&assignment_repo_type=AssignmentRepo)