Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-pipeline
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-pipeline
Commits
6885a792
Commit
6885a792
authored
Jun 16, 2011
by
Timothée Peignier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add docs on storage and staticfiles finder
parent
14ee919f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
docs/index.rst
+1
-0
docs/storages.rst
+25
-0
docs/templates.rst
+3
-0
No files found.
docs/index.rst
View file @
6885a792
...
...
@@ -20,6 +20,7 @@ Table Of Contents
compilers
versioning
templates
storages
farfutureexpires
backwardsincompatiblechanges
...
...
docs/storages.rst
0 → 100644
View file @
6885a792
.. _ref-storages:
========
Storages
========
Using with a custom storage
===========================
Pipeline use `Django Storage <https://docs.djangoproject.com/en/dev/ref/files/storage/>`_
to read, save and delete files, by default it use an improved ``FileSystemStorage``.
You can provide your own via ``PIPELINE_STORAGE`` : ::
PIPELINE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
Using with staticfiles
======================
Pipeline is providing a Finder for `staticfiles app <https://docs.djangoproject.com/en/dev/howto/static-files/>`_,
to use it configure ``STATICFILES_FINDERS`` like so : ::
STATICFILES_FINDERS = 'pipeline.finders.PipelineFinder'
docs/templates.rst
View file @
6885a792
.. _ref-templates:
====================
Javascript Templates
====================
...
...
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