Commit 9ab93d1f by Clinton Blackburn Committed by Clinton Blackburn

Disabled system checks for the compile_sass management command

The system checks require database access, which is not available when building Docker images. This relaxes the check, allowing the command to execute without a database.

ECOM-6634
parent 59532fb9
......@@ -19,6 +19,9 @@ class Command(BaseCommand):
help = 'Compile and collect themed assets...'
# NOTE (CCB): This allows us to compile static assets in Docker containers without database access.
requires_system_checks = False
def add_arguments(self, parser):
"""
Add arguments for compile_sass command.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment