장고 프로젝트 진행 순서는 아래의 순서를 참고 진행하려 한다.
(파이참 x -> VScode)
https://thalals.tistory.com/40?category=479867
1) 가상환경 설치
python -m venv myvenv
2) 가상환경 활성화
source myvenv/Scripts/activate
3) 장고 다운로드
pip install django
https://thalals.tistory.com/41?category=479867
4) 장고 프로젝트 생성
django-admin startproject safetymap
5) 장고 앱 생성
- 프로젝트 폴더안에 App폴더를 생성할 수 있다.
- App들이 모여서 프로젝트가 완성되는것이다.
$ python manage.py startapp <app이름> ex) python manage.py startapp testapp
6) App 폴더 연동
- settings.py
https://thalals.tistory.com/38?category=479868
7) DB 연결 (Mysql)
8) admin 설정
https://thalals.tistory.com/43?category=479867
'Django > 개인 프로젝트1(안전한 보행길 지도)' 카테고리의 다른 글
[Django] Python 지도라이브러리 Folium 과 leaflet 차이점(Folium VS Leaflet.js) (0) | 2021.08.11 |
---|---|
Django Leaflet.js 지도 라이브러리 불러오기 (0) | 2021.08.11 |
Django Templates 폴더 App 폴더 바깥쪽으로 빼서 한번에 관리하기 (0) | 2021.08.11 |
[Django] Python hexagon grid (Map 공간 일정 간격으로 규격화 하기, hexgrid) (0) | 2021.05.14 |
[Leaflet] Django에 Leaflet Marker 표시하기(Point Array) (0) | 2021.05.14 |