Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

cicadahq/release

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 

Repository files navigation

Cicada Releases

Getting started guide

0. Dependencies

MacOS Quickstart

brew install deno
brew install --cask docker

1. Download the Cicada CLI

Use this script to download the latest release of Cicada:

curl -fSsL https://raw.githubusercontent.com/cicadahq/release/main/download.sh | sh

2. Create a pipeline

Go to the project you want to make a pipeline for and run:

cicada init <pipeline-name>

3. Run the pipeline

cicada run .cicada/<pipeline-name>.ts

4. (Optional) Set up autocomplete for .cicada files

Install the Deno extension for VSCode:

code --install-extension denoland.vscode-deno

Add the following to your .vscode/settings.json

{
  "deno.enable": true,
  "deno.enablePaths": [".cicada"]
}