Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django2-project-template
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
django2-project-template
Commits
79a9400f
Unverified
Kaydet (Commit)
79a9400f
authored
Ock 09, 2018
tarafından
Uğur Özyılmazel
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Correction: examples in README.md file
üst
72f482f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
README.md
README.md
+5
-4
baseapp_create_app.py
...cations/baseapp/management/commands/baseapp_create_app.py
+3
-2
No files found.
README.md
Dosyayı görüntüle @
79a9400f
...
...
@@ -105,11 +105,11 @@ First, create application:
$
python manage.py baseapp_create_app blog
# or
$
rake new:application[blog]
"blog"
application created.
- Do not forget to add your
`
blog
`
to
`
INSTALLED_APPS
`
under
`
config/settings/base.py
`
:
INSTALLED_APPS +
=
[
...
...
@@ -117,14 +117,15 @@ $ rake new:application[blog]
]
- Do not forget to fix your
`
config/settings/urls.py
`
:
# ...
urlpatterns
=
[
# ...
# this is just an example!
url
(
r
'^
__blog__/'
, include
(
'blog.urls'
,
namespace
=
'blog'
))
,
path
(
'
__blog__/'
, include
(
'blog.urls'
,
namespace
=
'blog'
))
,
# ..
]
# ...
```
...
...
applications/baseapp/management/commands/baseapp_create_app.py
Dosyayı görüntüle @
79a9400f
...
...
@@ -49,14 +49,15 @@ USER_REMINDER = """
]
- Do not forget to fix your `config/settings/urls.py`:
# ...
urlpatterns = [
# ...
# this is just an example!
path('__{app_name}__/', include('{app_name}.urls', namespace='{app_name}')),
# ..
]
# ...
"""
...
...
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