https://github.com/react-samples/django-sample1
https://github.com/react-samples/django-sample2
python3 -m venv djangoApp cd djangoApp source bin/activate pip3 install django
python3 manage.py runserver
jinja2も使えるらしいが標準設定はDTLだと。ここもパスの設定が必要である。 settings.pyのTEMPLATESのDIRSに以下の設定を追加。
'DIRS': [ os.path.join(BASE_DIR, "templates"), ],
/static以下のパスでSTATIC_FILE_DIRS配列に検索にいく。BASE_DIRは予約済み定数でプロジェクトのROOTを示す。manage.pyと同じところにstatic作っておく、
STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static") ]