在开发和生产中使用不同的 firebase 服务帐户
Use different firebase service account in development and production
我们在我们的 django 应用程序中使用 firebase python admin sdk。 (这用于 phone auth 后端验证)。
SDK 使用serviceAccountKey.json 文件进行身份验证。
在生产和开发环境中使用它的最佳做法是什么?
最好分开,这样可以安全地 git 忽略此文件。
在您的环境中存储 serviceAccountKey.json
的路径并将其添加到 git 忽略。
如果 DEBUG 是 True
,请使用不同的 firebase 项目
我们在我们的 django 应用程序中使用 firebase python admin sdk。 (这用于 phone auth 后端验证)。
SDK 使用serviceAccountKey.json 文件进行身份验证。
在生产和开发环境中使用它的最佳做法是什么? 最好分开,这样可以安全地 git 忽略此文件。
在您的环境中存储 serviceAccountKey.json
的路径并将其添加到 git 忽略。
如果 DEBUG 是 True