Results of 1 - 10 of about 71 for configuration (0.019 sec.)
- How to configure and use logging — Django 4.0.6 ドキュメント 15855
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
overview Django provides a working default logging configuration that is readily extended. Make a basic logging cal ...
e logger. If you're using Django's default logging configuration, the message will appear in the console. The WARNI ...
efault. Changing this behavior requires additional configuration. Customize logging configuration ¶ Although Django ...
's logging configuration works out of the box, you can control exactly how ...
-
https://man.plustar.jp/django/howto/logging.html
- [similar]
- アプリケーション — Django 4.0.6 ドキュメント 12552
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ig subclass in the apps.py submodule, it uses that configuration for the application. This behavior may be disabled ...
y, INSTALLED_APPS may contain the dotted path to a configuration class to specify it explicitly: INSTALLED_APPS = [ ...
finition. If your users want to pick a non-default configuration, they must replace 'rock_n_roll' with the dotted p ...
name attribute tells Django which application this configuration applies to. You can define any other attribute doc ...
-
https://man.plustar.jp/django/ref/applications.html
- [similar]
- Full text search — Django 4.0.6 ドキュメント 9080
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
'Cheese' , both using the default database search configuration. The results are obtained by matching the query an ...
>, <Entry: Pizza Recipes>] See Changing the search configuration and Weighting queries for an explanation of the co ...
archQuery ( 'meat' ) # NOT See Changing the search configuration for an explanation of the config parameter. Search ...
d <span>red</span> cheese. See Changing the search configuration for an explanation of the config parameter. Changi ...
-
https://man.plustar.jp/django/ref/contrib/postgres/search.html
- [similar]
- システムチェックフレームワーク — Django 4.0.6 ドキュメント 8995
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
tions. async_support : Checks asynchronous-related configuration. caches : Checks cache related configuration. comp ...
rsion upgrades. database : Checks database-related configuration issues. Database checks are not run by default bec ...
ng the check command. files : Checks files related configuration. models : Checks of model, field, and manager defi ...
nitions. security : Checks security related configuration. signals : Checks on signal declarations and handl ...
-
https://man.plustar.jp/django/ref/checks.html
- [similar]
- データベース — Django 4.0.6 ドキュメント 8995
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
specify them in the OPTIONS part of your database configuration in DATABASES : settings.py ¶ DATABASES = { 'defaul ...
may be implemented later . Optimizing PostgreSQL's configuration ¶ Django needs the following parameters for its da ...
ABLE , set it in the OPTIONS part of your database configuration in DATABASES : import psycopg2.extensions DATABASE ...
an change the default storage engine in the server configuration. MySQL's default storage engine is InnoDB . This e ...
-
https://man.plustar.jp/django/ref/databases.html
- [similar]
- Django 1.2.4 release notes — Django 4.0.6 ドキュメント 8742
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
reby a running a test suite on a multiple database configuration could cause the original source database (i.e., th ...
e any creation order dependencies in your database configuration. Most users -- even users with multiple-database c ...
e concerned about the data loss bug, or the manual configuration of TEST_DEPENDENCIES . See the original problem re ...
dmin , new , contrib , suite , users , GeoDjango , configuration クイック検索 Last update: 2022年6月01日 « previous ...
-
https://man.plustar.jp/django/releases/1.2.4.html
- [similar]
- 設定 — Django 4.0.6 ドキュメント 7997
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
nner options that may be required for more complex configurations are available: ATOMIC_REQUESTS ¶ デフォルト値: Fa ...
ータベース . Here's an example with a test database configuration: DATABASES = { 'default' : { 'ENGINE' : 'django.db ...
ca (referred to as master/slave by some databases) configurations of multiple databases. See the documentation on t ...
esting primary/replica configurations for details. NAME ¶ デフォルト値: None The name o ...
-
https://man.plustar.jp/django/ref/settings.html
- [similar]
- django.apps.config — Django 4.0.6 ドキュメント 7674
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
"""Class representing a Django application and its configuration.""" def __init__ ( self , app_name , app_module ): ...
onfig_name : message += ( "Django now detects this configuration automatically. " "You can remove default_app_confi ...
t one with " "default = True." % ( "picked another configuration, %r " % app_config_name if app_config_name else "d ...
id not find this configuration" ) ) warnings . warn ( message , RemovedInDjango41 ...
-
https://man.plustar.jp/django/_modules/django/apps/config.html
- [similar]
- Advanced testing topics — Django 4.0.6 ドキュメント 7674
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
s and multiple databases ¶ Testing primary/replica configurations ¶ If you're testing a multiple database configura ...
nsider the following (simplified) example database configuration: DATABASES = { 'default' : { 'ENGINE' : 'django.db ...
her databases in your test setup. If your database configuration requires a specific creation order, you can specif ...
nsider the following (simplified) example database configuration: DATABASES = { 'default' : { # ... db settings 'TE ...
-
https://man.plustar.jp/django/topics/testing/advanced.html
- [similar]
- ロギング — Django 4.0.6 ドキュメント 7590
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ault logging definition ¶ Django's default logging configuration inherits Python's defaults. It's available as djan ...
how to complement or replace this default logging configuration. Django logging extensions ¶ Django provides a num ...
ced if DEBUG were True . To set this value in your configuration, include it in the handler definition for django.u ...
s filter is used as follows in the default LOGGING configuration to ensure that the AdminEmailHandler only sends er ...
-
https://man.plustar.jp/django/ref/logging.html
- [similar]