検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 110 for installed (0.015 sec.)
GeoDjango Installation — Django 4.0.6 ドキュメント 13423
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... f the spatial backends . Add django.contrib.gis to INSTALLED_APPS ¶ Like other Django contrib applications, you ... will only need to add django.contrib.gis to INSTALLED_APPS in your settings. This is so that the gis tem ... rectory where the libraries built from source were installed. In general, the library path may be set on a per- ... ary on GNU/Linux systems. Thus, if binutils is not installed on your Linux system then Python's ctypes may not ...
https://man.plustar.jp/django/ref/contrib/gis/install/index.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 11911
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ァイル、ミドルウェアなどが含まれます。これらは一般に INSTALLED_APPS 設定で有効になり、それ以外では URLconfs、 MID ... ave models, etc. (which would require adding it to INSTALLED_APPS ). アプリケーションを設定する ¶ アプリケーショ ... こに AppConfig のサブクラスを定義してください。 When INSTALLED_APPS contains the dotted path to an application mo ... Config の基底クラスが使用されます。 Alternatively, INSTALLED_APPS may contain the dotted path to a configuratio ...
https://man.plustar.jp/django/ref/applications.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 10819
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... types application that can track all of the models installed in your Django-powered project, providing a high-l ... e represent and store information about the models installed in your project, and new instances of ContentType ... are automatically created whenever new models are installed. Instances of ContentType have methods for returni ... of your models and instances of any model you have installed. Installing the contenttypes framework ¶ The conte ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 9410
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... singleton known as the "app cache" dealt with both installed applications and models. The models module was use ... hes and within predicates, if GEOS 3.3 or later is installed. django.contrib.messages ¶ The backends for django ... usly depended on the PyWin32 package; if it wasn't installed, file locking failed silently. That dependency has ... al improvements: On Linux systems, if pyinotify is installed, the development server will reload immediately wh ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 8978
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -admin script should be on your system path if you installed Django via pip . If it's not in your path, ensure ... ckage containing your models. For example, if your INSTALLED_APPS contains the string 'mysite.blog' , the app n ... The recognized fields may depend on apps listed in INSTALLED_APPS . For example, django.contrib.postgres adds r ... s for fixtures: In the fixtures directory of every installed application In any directory named in the FIXTURE_ ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
contrib packages — Django 4.0.6 ドキュメント 8648
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e name (e.g., 'django.contrib.redirects' ) to your INSTALLED_APPS setting and re-run manage.py migrate . Django ... s the auth and contenttypes contrib packages to be installed. auth ¶ Django's authentication framework. See Dja ... rk for hooking into "types" of content, where each installed Django model is a separate content type. See the c ... ntation . Requires the sites contrib package to be installed as well. gis ¶ A world-class geospatial framework ...
https://man.plustar.jp/django/ref/contrib/index.html - [similar]
How to use Django with Gunicorn — Django 4.0.6 ドキュメント 8546
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... server for UNIX. It has no dependencies and can be installed using pip . Installing Gunicorn ¶ Install gunicorn ... n as a generic WSGI application ¶ When Gunicorn is installed, a gunicorn command is available which starts the ... ともに使うには? 関連キーワード Gunicorn , gunicorn , installed , simplest , process , command , generic , Running ...
https://man.plustar.jp/django/howto/deployment/wsgi/gunicorn.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 8546
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... E210 : Cannot use ImageField because Pillow is not installed. 関連フィールド ¶ fields.E300 : Field defines a re ... lation with model <model> , which is either not installed, or is abstract. fields.E301 : Field defines a rel ... to <app label>.<model> , but app <app label> isn't installed or doesn't provide model <model> . fields.E308 : R ... elation through model <model> , which has not been installed. fields.E332 : Many-to-many fields with intermedia ...
https://man.plustar.jp/django/ref/checks.html - [similar]
The Django admin documentation generator — Django 4.0.6 ドキュメント 8114
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... template tags, and template filters for any app in INSTALLED_APPS and makes that documentation available from t ... he following: Add django.contrib.admindocs to your INSTALLED_APPS . Add path('admin/doc/', include('django.cont ... contrib.admindocs.middleware.XViewMiddleware to be installed. Once those steps are complete, you can start brow ... this bookmarklet requires that XViewMiddleware is installed and that you are logged into the Django admin as a ...
https://man.plustar.jp/django/ref/contrib/admin/admindocs.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 8000
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ROOT . Therefore if you remove an application from INSTALLED_APPS , it's a good idea to use the collectstatic - ... in the 'static' directory of apps specified by the INSTALLED_APPS setting. The collectstatic management command ... .contrib.staticfiles' with that class path in your INSTALLED_APPS setting: from django.contrib.staticfiles.apps ... e core runserver command if the staticfiles app is installed and adds automatic serving of static files. File s ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT