mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
27 lines
685 B
Markdown
Executable File
27 lines
685 B
Markdown
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 pyapp
|
|
## install an app
|
|
python3 manage.py startapp pyapp
|
|
|
|
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
|
|
|