์ฑ ๋ ๋ฒจ์ templates ํด๋ ๋ด๋ถ์ html ํ์ผ์ view์ ์ฐ๊ฒฐํ๊ธฐ(์ ํํ ์์น๋ templates/์ฑ์ด๋ฆ/example.html) Steps๐: 1) Create project with django-admin startproject my_site Create App Directory with python manage.py startapp my_app command. Create the relevant URLs and Views(์ฑ ๋ ๋ฒจ์ urls.py๋ ์๋ ์์ฑ๋์ง ์์). Map the App URLs to the Project URLs. 2) python manage.py migrate : settings.py ๋ด๋ถ์ ์ค์น๋ ์ฑ์ ๋ณด๊ณ , ํ์ํ db ํ ์ด๋ธ์ ์์ฑํจ. 3) Inside o..