A ready-to-use CI/CD Pipeline for your Django projects.
Run the following command:
fluentci run django_pipeline
Or, if you want to use it as a template:
fluentci init -t django
This will create a .fluentci
folder in your project.
Now you can run the pipeline with:
fluentci run .
Use as a Dagger module:
dagger install github.com/fluent-ci-templates/django-pipeline@main
Job | Description |
---|---|
djangoTests | Run your tests |
djangoTests(
src: Directory | string | undefined = "."
): Promise<string>
You can also use this pipeline programmatically:
import { djangoTests } from "jsr:@fluentci/django";
await djangoTests();