0. eclips에서 Blog 프로젝트생성

New > Project > PyDev > PyDev Django Project
Project : Blog
Interpreter : 가상환경 선택 -> 없다면 References > PyDev > Interpreters > Python Interpreter에 설정한 가상환경 추가


1. 가상환경 진입

C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog>BlogVenv\Scripts\activate

 

2. 기본 테이블 생성

(BlogVenv) C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog>python.exe manage.py migrate
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, sessions
Running migrations:
  Applying contenttypes.0001_initial... OK
  Applying auth.0001_initial... OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying admin.0003_logentry_add_action_flag_choices... OK
  Applying contenttypes.0002_remove_content_type_name... OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying auth.0009_alter_user_last_name_max_length... OK
  Applying auth.0010_alter_group_name_max_length... OK
  Applying auth.0011_update_proxy_permissions... OK
  Applying sessions.0001_initial... OK

 

3. 슈퍼유저 생성

(BlogVenv) C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog>python manage.py createsuperuser
Username (leave blank to use 'administrator'):
Email address: anzi*****@*****.com
Password:
Password (again):
Superuser created successfully.

 

4. 슈퍼유저 비번변경

(BlogVenv) C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog>python manage.py changepassword administrator
Changing password for user 'administrator'
Password:
Password (again):
Password changed successfully for user 'administrator'

 

5. Post라는 애플리케이션 생성(현재 디렉토리 하위에 post 디렉토리생성

(BlogVenv) C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog>python manage.py startapp post

 

6. 생성파일 확인

(BlogVenv) C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog>dir post
 C 드라이브의 볼륨: OS
 볼륨 일련 번호: 0A2F-2672

 C:\Work\Software\eclipse-jee-2019-12-R-win32-x86_64\workspace\Blog\post 디렉터리

2020-01-11  오전 01:53    <DIR>          .
2020-01-11  오전 01:53    <DIR>          ..
2020-01-11  오전 01:53                66 admin.py
2020-01-11  오전 01:53                88 apps.py
2020-01-11  오전 01:53    <DIR>          migrations
2020-01-11  오전 01:53                60 models.py
2020-01-11  오전 01:53                63 tests.py
2020-01-11  오전 01:53                66 views.py
2020-01-11  오전 01:53                 0 __init__.py
               6개 파일                 343 바이트
               3개 디렉터리  92,399,140,864 바이트 남음