mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
-- Tutorial of django https://duckduckgo.com/?q=django+tutorial&iax=videos&ia=videos&iai=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dsm1mokevMWk
-- Make a root folder named xy python3 -m venv virtualenv
Activate the virutal environment
source virtualenv/bin/activate
Install django
python3 -m pip install django
Start the project
django-admin startproject demo
install an app
python3 manage.py startapp migration
python3 manage.py createsuperuser python3 manage.py migrate
-- Django calling Rest Services ? python3 manage.py runserver
-- Django DB Initialisation
creating the model
python3 manage.py makemigrations
creating the table
python3 manage.py migrate
Description
Languages
Python
94%
HTML
4.1%
Dockerfile
1.2%
Shell
0.7%