mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-09 17:15:23 +02:00
14 lines
362 B
Markdown
14 lines
362 B
Markdown
-- Tutorial of django
|
|
https://duckduckgo.com/?q=django+tutorial&iax=videos&ia=videos&iai=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dsm1mokevMWk
|
|
|
|
python3 -m venv env
|
|
python3 -m pip install django
|
|
|
|
-- Django calling Rest Services ?
|
|
|
|
python3 manage.py newproject demo
|
|
django-admin startproject demo
|
|
python3 manage.py startapp banking
|
|
python3 manage.py runserver
|
|
|