수색…


설치 및 CookiCutter를 사용하여 장고 프로젝트 설정

다음은 Cookiecutter 설치를위한 전제 조건입니다.

  • virtualenv
  • PostgreSQL

프로젝트의 가상 노드를 만들고 활성화하십시오 :

$ mkvirtualenv <virtualenv name>
$ workon <virtualenv name>

이제 다음을 사용하여 Cookiecutter를 설치하십시오.

$ pip install cookiecutter

프로젝트를 저장할 폴더로 디렉토리를 변경하십시오. 이제 다음 명령을 실행하여 django 프로젝트를 생성하십시오.

$ cookiecutter https://github.com/pydanny/cookiecutter-django.git

이 명령은 cookiecutter-django repo로 cookiecutter를 실행하고 프로젝트 별 세부 정보를 입력하도록 요청합니다. 질문 뒤에 [괄호]로 표시된 기본값을 사용하려면 아무 것도 입력하지 않고 "입력"을 누르십시오.

project_name [project_name]: example_project
repo_name [example_project]: 
author_name [Your Name]: Atul Mishra
email [Your email]: [email protected]
description [A short description of the project.]: Demo Project
domain_name [example.com]: example.com
version [0.1.0]: 0.1.0
timezone [UTC]: UTC
now [2016/03/08]: 2016/03/08
year [2016]: 2016
use_whitenoise [y]: y
use_celery [n]: n
use_mailhog [n]: n
use_sentry [n]: n
use_newrelic [n]: n
use_opbeat [n]: n
windows [n]: n
use_python2 [n]: n

프로젝트 생성 옵션에 대한 자세한 내용은 공식 문서 에서 확인할 수 있습니다 . 이제 프로젝트가 설정되었습니다.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow