我有 django 应用程序,我在本地开发并部署到 pythonanywhere。
Local Setting.py 包含 sqlite-db、本地静态路径等。pythonanywhere 上的 Setting.py 包含 mysql-db、静态的 cdn 链接等。
我想在我的 git 中有一个设置文件,并进行一些这样的检查
if host_type=='pythonanywhere':
DATABASES = { "default": { "ENGINE": "django.db.backends.mysql",
settings.py 的最佳实践在哪里?
pythonanywhere 提供了哪些 os.environ?