Class Command
Copies or symlinks static files from different locations to the settings.STATIC_ROOT.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, *args, **kwargs) override ▶ def add_arguments(self, parser) overrideinherited doc Entry point for subclassed commands to add custom arguments.
▷ def clear_dir(self, path) Delete the given relative path using the destination storage backend.
▶ def collect(self) Perform the bulk of the work of collectstatic.
Split off from handle() to facilitate testing.
▷ def copy_file(self, path, prefixed_path, source_storage) Attempt to copy ``path`` with storage
▷ def delete_file(self, path, prefixed_path, source_storage) Check if the target file should be deleted if it already exists.
▶ def handle(self, **options) overrideinherited doc The actual logic of the command. Subclasses must implement this method.
▷ def link_file(self, path, prefixed_path, source_storage) Attempt to link ``path``
▷ def local(self) @cached_property @cached_property
def local(self)
▷ def log(self, msg, level=2) Small log helper
▷ def set_options(self, **options) Set instance variables based on an options dict