Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
84398897
Kaydet (Commit)
84398897
authored
Mar 05, 2018
tarafından
jblang94
Kaydeden (comit)
Tim Graham
Mar 05, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Improved clarity of docs/topics/install.txt.
üst
821e304c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
install.txt
docs/topics/install.txt
+7
-7
No files found.
docs/topics/install.txt
Dosyayı görüntüle @
84398897
...
@@ -7,8 +7,8 @@ This document will get you up and running with Django.
...
@@ -7,8 +7,8 @@ This document will get you up and running with Django.
Install Python
Install Python
==============
==============
Being a Python Web framework, Django requires Python. See
Django is a Python Web framework. See :ref:`faq-python-version-support` for
:ref:`faq-python-version-support` for
details.
details.
Get the latest version of Python at https://www.python.org/downloads/ or with
Get the latest version of Python at https://www.python.org/downloads/ or with
your operating system's package manager.
your operating system's package manager.
...
@@ -34,19 +34,19 @@ testing, so you won't need to set up Apache until you're ready to
...
@@ -34,19 +34,19 @@ testing, so you won't need to set up Apache until you're ready to
deploy Django in production.
deploy Django in production.
If you want to use Django on a production site, use `Apache`_ with
If you want to use Django on a production site, use `Apache`_ with
`mod_wsgi`_. mod_wsgi
can operate in one of two modes: an
embedded
`mod_wsgi`_. mod_wsgi
operates in one of two modes:
embedded
mode
and a
daemon mode. In embedded mode, mod_wsgi is similar to
mode
or
daemon mode. In embedded mode, mod_wsgi is similar to
mod_perl -- it embeds Python within Apache and loads Python code into
mod_perl -- it embeds Python within Apache and loads Python code into
memory when the server starts. Code stays in memory throughout the
memory when the server starts. Code stays in memory throughout the
life of an Apache process, which leads to significant performance
life of an Apache process, which leads to significant performance
gains over other server arrangements. In daemon mode, mod_wsgi spawns
gains over other server arrangements. In daemon mode, mod_wsgi spawns
an independent daemon process that handles requests. The daemon
an independent daemon process that handles requests. The daemon
process can run as a different user than the Web server, possibly
process can run as a different user than the Web server, possibly
leading to improved security
, and t
he daemon process can be restarted
leading to improved security
. T
he daemon process can be restarted
without restarting the entire Apache Web server, possibly making
without restarting the entire Apache Web server, possibly making
refreshing your codebase more seamless. Consult the mod_wsgi
refreshing your codebase more seamless. Consult the mod_wsgi
documentation to determine which mode is right for your setup. Make
documentation to determine which mode is right for your setup. Make
sure you have Apache installed
,
with the mod_wsgi module activated.
sure you have Apache installed with the mod_wsgi module activated.
Django will work with any version of Apache that supports mod_wsgi.
Django will work with any version of Apache that supports mod_wsgi.
See :doc:`How to use Django with mod_wsgi </howto/deployment/wsgi/modwsgi>`
See :doc:`How to use Django with mod_wsgi </howto/deployment/wsgi/modwsgi>`
...
@@ -76,7 +76,7 @@ If you are developing a simple project or something you don't plan to deploy
...
@@ -76,7 +76,7 @@ If you are developing a simple project or something you don't plan to deploy
in a production environment, SQLite is generally the simplest option as it
in a production environment, SQLite is generally the simplest option as it
doesn't require running a separate server. However, SQLite has many differences
doesn't require running a separate server. However, SQLite has many differences
from other databases, so if you are working on something substantial, it's
from other databases, so if you are working on something substantial, it's
recommended to develop with the same database
as
you plan on using in
recommended to develop with the same database
that
you plan on using in
production.
production.
In addition to the officially supported databases, there are :ref:`backends
In addition to the officially supported databases, there are :ref:`backends
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment