mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-25 19:14:03 +03:00
Put in markers for configuration, plus Procfile
This commit is contained in:
parent
f5e754c285
commit
0fba2400fa
|
@ -32,3 +32,6 @@ https://bitbucket.org/andrewgodwin/south/get/59f6bae8b1a501ca14a5f23f8b11c44c42f
|
|||
|
||||
# django-crispy-forms with support for Bootstrap 3
|
||||
git+git://github.com/maraujop/django-crispy-forms@42c84a9b02d885de249c1d003c2e7ad031283c26
|
||||
|
||||
|
||||
# Your custom requirements go here
|
|
@ -182,6 +182,7 @@ THIRD_PARTY_APPS = (
|
|||
# Apps specific for this project go here.
|
||||
LOCAL_APPS = (
|
||||
'users', # custom users app
|
||||
# Your custom apps go here
|
||||
)
|
||||
|
||||
# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
|
||||
|
|
|
@ -21,9 +21,14 @@ urlpatterns = patterns('',
|
|||
# Uncomment the next line to enable the admin:
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
|
||||
# User management
|
||||
url(r'^users/', include("users.urls", namespace="users")),
|
||||
url(r'^users/', include("users.urls", namespace="users")),
|
||||
#url(r'^avatar/', include('avatar.urls')),
|
||||
url(r'^accounts/', include('allauth.urls')),
|
||||
|
||||
# Uncomment the next line to enable avatars
|
||||
#url(r'^avatar/', include('avatar.urls')),
|
||||
|
||||
# Your custom urls go here
|
||||
|
||||
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user