django에서py 파일을 디버깅하는 방법
2833 단어 django
py , django , , , google stackoverflow :
첫 번째 방법: settings 대상을 가져옵니다. (대상이 모듈이 아니라는 것을 주의하십시오)
from django.conf import settings
settings.configure(
DATABASE_ENGINE='postgresql_psycopg2',
DATABASE_NAME='FOO',
DATABASE_USER='username',
DATABASE_PASSWORD='password',
DATABASE_HOST='localhost',
DATABASE_PORT='5432',
INSTALLED_APPS=('foo',)
)
직접 세팅하면.configure () 는 데이터베이스 설정을 잘못 찾을 수 있으므로 위의 방법에 따라 명확하게 표시할 수 있습니다.
더 좋은 방법은:
import django.core.management
from foo import settings
django.core.management.setup_environ(settings)
django.core.management setup_environ , docstring :
Configures the runtime environment. This can also be used by external scripts wanting to set up a similar environment to manage.py. Returns the project directory (assuming the passed settings module is directly in the project directory).
The "original_settings_path"parameter is optional, but recommended, since trying to work out the original path from the module can be problematic.
py django
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Django의 질문 및 답변 웹사이트환영 친구, 이것은 우리의 새로운 블로그입니다. 이 블로그에서는 , 과 같은 Question-n-Answer 웹사이트를 만들고 있습니다. 이 웹사이트는 회원가입 및 로그인이 가능합니다. 로그인 후 사용자는 사용자의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.