반응형
1. blog 앱 생성
python manage.py startapp blog
2. 앱 생성 후 폴더 구조 확인
blog/
__init__.py
admin.py
apps.py
migrations/
__init__.py
models.py
tests.py
views.py
3. settings.py 앱 등록
...
INSTALLED_APPS += [
'blog.apps.BlogConfig',
]
...
4. 앱 이란?
- 웹 로그 시스템, 공개 기록 데이터베이스 또는 소규모 설문 조사 앱과 같은 작업을 수행하는 웹 애플리케이션이다.
- 앱은 여러 프로젝트에있을 수 있습니다.
반응형
'Python_WEB > Project-Kindergarten' 카테고리의 다른 글
Project Code Review>Creating Views (0) | 2020.05.30 |
---|---|
Project Code Review>Setting File Settings (0) | 2020.05.27 |
Project Code Review>Development Server (0) | 2020.05.27 |
Project Code Review>Project Creation (0) | 2020.05.27 |
Project Code Review>Basic Setting (0) | 2020.05.27 |