mirror of https://github.com/zulip/zulip.git
dev_urls: Add comments documenting sections.
This commit is contained in:
parent
3905602da5
commit
4da9383f2d
|
@ -11,6 +11,10 @@ use_prod_static = getattr(settings, 'PIPELINE_ENABLED', False)
|
||||||
static_root = os.path.join(settings.DEPLOY_ROOT, 'prod-static/serve' if use_prod_static else 'static')
|
static_root = os.path.join(settings.DEPLOY_ROOT, 'prod-static/serve' if use_prod_static else 'static')
|
||||||
|
|
||||||
urls = [
|
urls = [
|
||||||
|
# Serve static assets via the Django server
|
||||||
|
url(r'^static/(?P<path>.*)$', serve, {'document_root': static_root}),
|
||||||
|
|
||||||
|
# Serve useful development environment resources (docs, coverage reports, etc.)
|
||||||
url(r'^coverage/(?P<path>.*)$',
|
url(r'^coverage/(?P<path>.*)$',
|
||||||
serve, {'document_root':
|
serve, {'document_root':
|
||||||
os.path.join(settings.DEPLOY_ROOT, 'var/coverage'),
|
os.path.join(settings.DEPLOY_ROOT, 'var/coverage'),
|
||||||
|
@ -18,7 +22,8 @@ urls = [
|
||||||
url(r'^docs/(?P<path>.*)$',
|
url(r'^docs/(?P<path>.*)$',
|
||||||
serve, {'document_root':
|
serve, {'document_root':
|
||||||
os.path.join(settings.DEPLOY_ROOT, 'docs/_build/html')}),
|
os.path.join(settings.DEPLOY_ROOT, 'docs/_build/html')}),
|
||||||
url(r'^static/(?P<path>.*)$', serve, {'document_root': static_root}),
|
|
||||||
|
# The special no-password login endpoint for development
|
||||||
url(r'^devlogin/$', zerver.views.auth.login_page,
|
url(r'^devlogin/$', zerver.views.auth.login_page,
|
||||||
{'template_name': 'zerver/dev_login.html'}, name='zerver.views.auth.login_page'),
|
{'template_name': 'zerver/dev_login.html'}, name='zerver.views.auth.login_page'),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue