Skip to content

fluent-ci-templates/django-pipeline

Repository files navigation

Django Pipeline

fluentci pipeline deno module deno compatibility dagger-min-version

A ready-to-use CI/CD Pipeline for your Django projects.

🚀 Usage

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 .

Dagger Module

Use as a Dagger module:

dagger install github.com/fluent-ci-templates/django-pipeline@main

Jobs

Job Description
djangoTests Run your tests
djangoTests(
  src: Directory | string | undefined = "."
): Promise<string>

Programmatic usage

You can also use this pipeline programmatically:

import { djangoTests } from "jsr:@fluentci/django";

await djangoTests();