django2/README.MD
Peter Kotyczka 679d7d1b58 smc
2024-03-24 22:58:33 +01:00

688 B
Executable File

-- 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