Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluent-ci-templates/base-pipeline
A minimal Fluent CI Pipeline
https://github.com/fluent-ci-templates/base-pipeline
Last synced: 2 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-29T13:34:05.000Z (3 months ago)
- Last Synced: 2024-08-29T15:00:56.334Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 219 KB
- Stars: 1
- 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
[![fluentci pipeline](https://img.shields.io/badge/dynamic/json?label=pkg.fluentci.io&labelColor=%23000&color=%23460cf1&url=https%3A%2F%2Fapi.fluentci.io%2Fv1%2Fpipeline%2Fbase_pipeline&query=%24.version)](https://pkg.fluentci.io/base_pipeline)
![deno compatibility](https://shield.deno.dev/deno/^1.42)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
```