all in wsl.
https://docs.djangoproject.com/en/5.0/intro/install/
install python install database install django
https://docs.djangoproject.com/en/5.0/topics/install/#installing-official-release
python -m pip install Django
https://docs.djangoproject.com/en/5.0/intro/tutorial01/
django-admin startproject mysite
# a folder named my site is created under where the command run
https://www.django-rest-framework.org/tutorial/quickstart/
startproject里面是startapp
难绷,mysite(project)里面的mysite是默认
草,model里面怎么直接写sql。
python manage.py makemigrations polls
# Migrations for 'polls':
# polls/migrations/0001_initial.py
# - Create model Question
# - Create model Choice
python manage.py sqlmigrate polls 0001
# https://docs.djangoproject.com/en/5.0/intro/tutorial02/
stop here.