首页 >后端开发 >Python教程 >使用 .env 更新 Django 密钥

使用 .env 更新 Django 密钥

Susan Sarandon
Susan Sarandon原创
2024-11-29 05:41:10150浏览

Update Django Key using .env

我通常编写的 Laravel 有一个命令可以更新 .env 文件中的加密密钥。老实说,我喜欢这种方法,并且想在我的 django 项目上复制。

因此,我按照以下步骤操作:

第 1 步:加载 .env 文件

参见:https://dev.to/pcmagas/how-to-load-env-in-django-project-4c9d

步骤 2:使用 SECRET_KEY 环境文件:

在 settings.py 执行:

SECRET_KEY = os.getenv('SECRET_KEY',None)

if SECRET_KEY is None:
    raise RuntimeError("SECRET_KEY value is not defined upon .env file")

步骤 3 创建更新 .env 的命令:

我使用以下内容制作了脚本 myapp/management/commands/mk_key.py(将 myapp 替换为您自己的应用程序名称):

from django.core.management.base import BaseCommand
from django.core.management.utils import get_random_secret_key
import os

class Command(BaseCommand):
    help = 'Create a new Secret Key'

    def handle(self, *args, **kwargs):

        key = get_random_secret_key()
        env_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..',"..","..",'.env')
        self.updateDotenv(env_file_path,key)

    def updateDotenv(self,env_file_path,key):

        with open(env_file_path, 'r') as file:
            lines = file.readlines()

            # Update the SECRET_KEY line
        updated_lines = []

        for line in lines:
            if line.startswith('SECRET_KEY'):
                continue
            else:
                updated_lines.append(line)

        line = f"SECRET_KEY='{key}'\n"
        updated_lines.insert(0,line)  # Replace with new key

        # Write the updated lines back to the .env file
        with open(env_file_path, 'w') as file:
            file.writelines(updated_lines)

        # Output the new secret key
        self.stdout.write(f"Updated .env\n")

然后运行它:

 python manage.py mk_key

以上是使用 .env 更新 Django 密钥的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn