Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
7 lines
110 B
Python
7 lines
110 B
Python
from celery import shared_task
|
|
|
|
|
|
@shared_task
|
|
def sample_task() -> str:
|
|
return "complex task placeholder"
|