Django Staticsfiles Ignore Debug
Project description
Serve static files below a given point in the directory structure or from locations inferred from the staticfiles finders in Django projects.
To use, put a URL pattern such as:
(r'^%s(?P<path>.*)$' % re.escape(settings.STATIC_URL.lstrip('/')), \
'staticsfiles_ignoredebug.views.serve')
in your URLconf.
It uses the django.views.static view to serve the found files.
At difference from django.contrib.staticfiles.urls.staticfiles_urlpatterns (https://docs.djangoproject.com/en/1.4/ref/contrib/staticfiles/#django.contrib.staticfiles.templatetags.staticfiles.django.contrib.staticfiles.urls.staticfiles_urlpatterns), this function allow serve the static content in non DEBUG mode.
If DEBUG=False and STATICFILES_IGNORE_DEBUG=False a ImproperlyConfigured exception is raised.
DISCLAIMER: Using this method is inefficient and insecure. Do not use this in a production setting. Use this only for development and testing environment with DEBUG=False.
About
The project staticsfiles_ignoredebug was developed by Mariano Ruiz on Enterprise Objects Consulting.
This sources are available in https://github.com/eoconsulting/django-staticsfiles-ignoredebug
License: LGPL-3 (C) 2013
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file staticsfiles_ignoredebug-0.1.0.tar.gz
.
File metadata
- Download URL: staticsfiles_ignoredebug-0.1.0.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 507ccc6d18642b81100649abc453b641237f5d2c876fec091750349429d936e0 |
|
MD5 | 18fb0024a22e0511513ac499174b069c |
|
BLAKE2b-256 | 6e8c6499fadb572bd96793ec49e4d3332b786245c7100784cc8a84ea73630477 |