https://github.com/fluent-ci-templates/base-pipeline
A minimal Fluent CI Pipeline
https://github.com/fluent-ci-templates/base-pipeline
Last synced: 3 months ago
JSON representation
A minimal Fluent CI Pipeline
- Host: GitHub
- URL: https://github.com/fluent-ci-templates/base-pipeline
- Owner: fluent-ci-templates
- License: mit
- Created: 2023-07-27T05:54:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-06T05:11:39.000Z (9 months ago)
- Last Synced: 2025-04-14T17:06:39.058Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 221 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Base Pipeline
[](https://pkg.fluentci.io/base_pipeline)
This repository contains a minimal pipeline for a [Fluent CI](https://fluentci.io) project. It is intended to be used as a template for new projects.
Reusing this template will allow you to get started with Fluent CI in a matter of minutes, just run the following command:```bash
fluentci init
```## Files Tree Layout
```plaintext
src
|-- helpers.ts : Contains helper functions
|-- jobs.ts : Contains the job definitions
|-- mod.ts : This is the entry point of the module
|-- pipeline.ts : Contains the pipeline definition
`-- runner.ts : Contains the runner function
```