Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to split the Django project configuration independently

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to split the Django project configuration". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

In the Django project, our default configuration is in the settings.py file, but the actual local debugging and online debugging should require two environments, so let's split the configuration now. Split the configuration.

First, create a configuration directory

We create a config directory under the following path of the project

Create a basic configuration file

Create the base.py file under the config configuration, and then copy the contents of the original settings.py file.

Third, create the configuration of each environment

Note that I have extracted some configurations. If we add the configuration in the environment configuration, we do not need to add it in the base.

Create dev.py

From .base import * # Note this must be added This is to import the configuration of base into DEBUG = TrueDATABASES = {'default': {' ENGINE': 'django.db.backends.mysql',' NAME': "ops", "HOST": "127.0.0.1", "PORT": 3306, "USER": "root", "PASSWORD": ",} ALIYUN_SECRETID = '123'

Create prod.py

From .base import * # Note this must be added This is to import the configuration of base into DEBUG = FalseDATABASES = {'default': {' ENGINE': 'django.db.backends.mysql',' NAME': "ops", "HOST": "127.0.0.1", "PORT": 3306, "USER": "ops", "PASSWORD": "",} ALIYUN_SECRETID = '123' IV, adjust settings.py

Replace the original configuration of settings.py with the following.

DJANGO_CONF_MODULE = 'config. {env}' .format (env='dev') try: _ module = _ _ import__ (DJANGO_CONF_MODULE, globals (), locals (), [*']) except ImportError as e: raise ImportError ("Could not import config'% s'(Is it on sys.path?):% s"% (DJANGO_CONF_MODULE) E) for _ setting in dir (_ module): if _ setting = = _ setting.upper (): locals () [_ setting] = getattr (_ module, _ setting)

The above configuration is the default configuration that uses dev. Suppose we want to use the configuration of prod, replace dev with prod

Fifth, the program uses from django.conf import settingssettings.ALIYUN_SECRETID # to reference VI. Directory structure

This is the end of the content of "how to split the Django project configuration". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report