#15080 closed (fixed)
collectstatic with fabric example should use -v0 to speed it up
Reported by: | Harro | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.3-beta |
Severity: | Keywords: | staticfiles, collectstatic, fabric | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I found out that using collectstatic through fabric makes for a very slow process.
The reason is that collectstatic by default outputs all the files it's collecting, which fabric has to pipe, which makes it very slow.
The fix is simple: pass a -v0
Also a --noinput should be added because fabric doesn't support the interactivity till 1.0 is released.
I think the documentation should reflect this
Attachments (2)
Change History (6)
by , 14 years ago
Attachment: | 15080.diff added |
---|
comment:1 by , 14 years ago
Has patch: | set |
---|
comment:2 by , 14 years ago
Component: | Contrib apps → Documentation |
---|---|
Triage Stage: | Unreviewed → Ready for checkin |
comment:3 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Added the -v0 and --noinput to the example