นี่คือแนวทางที่เราใช้:
settings
โมดูลการตั้งค่าการแยกออกเป็นหลายไฟล์สำหรับการอ่าน;
.env.json
ไฟล์ข้อมูลประจำตัวของการจัดเก็บและพารามิเตอร์ที่เราต้องการได้รับการยกเว้นจากการเก็บคอมไพล์ของเราหรือที่มีสภาพแวดล้อมที่เฉพาะเจาะจง
env.py
ไฟล์ที่จะอ่าน.env.json
ไฟล์
พิจารณาโครงสร้างต่อไปนี้:
...
.env.json # the file containing all specific credentials and parameters
.gitignore # the .gitignore file to exclude `.env.json`
project_name/ # project dir (the one which django-admin.py creates)
accounts/ # project's apps
__init__.py
...
...
env.py # the file to load credentials
settings/
__init__.py # main settings file
database.py # database conf
storage.py # storage conf
...
venv # virtualenv
...
ด้วย.env.json
ชอบ:
{
"debug": false,
"allowed_hosts": ["mydomain.com"],
"django_secret_key": "my_very_long_secret_key",
"db_password": "my_db_password",
"db_name": "my_db_name",
"db_user": "my_db_user",
"db_host": "my_db_host",
}
และproject_name/env.py
:
<!-- language: lang-python -->
import json
import os
def get_credentials():
env_file_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
with open(os.path.join(env_file_dir, '.env.json'), 'r') as f:
creds = json.loads(f.read())
return creds
credentials = get_credentials()
เราสามารถตั้งค่าดังต่อไปนี้:
<!-- language: lang-py -->
# project_name/settings/__init__.py
from project_name.env import credentials
from project_name.settings.database import *
from project_name.settings.storage import *
...
SECRET_KEY = credentials.get('django_secret_key')
DEBUG = credentials.get('debug')
ALLOWED_HOSTS = credentials.get('allowed_hosts', [])
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
...
]
if DEBUG:
INSTALLED_APPS += ['debug_toolbar']
...
# project_name/settings/database.py
from project_name.env import credentials
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': credentials.get('db_name', ''),
'USER': credentials.get('db_user', ''),
'HOST': credentials.get('db_host', ''),
'PASSWORD': credentials.get('db_password', ''),
'PORT': '5432',
}
}
ประโยชน์ของโซลูชันนี้คือ:
- ข้อมูลรับรองและการกำหนดค่าเฉพาะของผู้ใช้สำหรับการพัฒนาเฉพาะที่โดยไม่ต้องแก้ไขที่เก็บ git
- การกำหนดค่าเฉพาะสภาพแวดล้อมคุณสามารถมีได้เช่นสามสภาพแวดล้อมที่แตกต่างกันซึ่งมีสามแบบที่แตกต่างกัน
.env.json
เช่น dev, stagging และ production
- หนังสือรับรองไม่ได้อยู่ในที่เก็บ
ฉันหวังว่านี่จะช่วยได้เพียงแจ้งให้เราทราบหากคุณเห็นข้อควรระวังในการแก้ปัญหานี้