Skip to main content

Laravel

Running the pre-built Laravel pipeline directly

Run the following command to run the pre-built Laravel pipeline without having to initialize a project:

fluentci run laravel_pipeline

Add Laravel Pipeline to your project

Run the following command to add a Laravel pipeline to your project:

fluentci init -t laravel

This will create a .fluentci directory in your project, feel free to customize the pipeline for your needs. You can then run the following command to start the pipeline:

fluentci run .

Environment variables

VariableDescriptionDefault Value
MARIADB_USERThe username for the MariaDB databaseuser
MARIADB_PASSWORDThe password for the MariaDB databasepassword
MARIADB_ROOT_PASSWORDThe root password for the MariaDB databaseroot

Jobs

JobDescription
testRun tests

Programmatic usage

You can also use this pipeline programmatically:

import Client, { connect } from "https://sdk.fluentci.io/v0.1.7/mod.ts";
import { test } from "https://pkg.fluentci.io/[email protected]/mod.ts";

function pipeline(src = ".") {
connect(async (client: Client) => {
await test();
});
}

pipeline();