소스 검색

Feature: Support local_settings as optional settings

pull/131/head
winkidney 6 년 전
부모
커밋
2278d6a552
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      pinry/settings/development.py
  2. +5
    -0
      pinry/settings/docker.py

+ 5
- 0
pinry/settings/development.py 파일 보기

@@ -19,3 +19,8 @@ DATABASES = {
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}

try:
from .local_settings import *
except ImportError:
pass

+ 5
- 0
pinry/settings/docker.py 파일 보기

@@ -22,3 +22,8 @@ DATABASES = {
'PORT': 5432,
}
}

try:
from .local_settings import *
except ImportError:
pass

불러오는 중...
취소
저장