Skip to main content

Spin

Run the following command to run the pre-built Spin Pipeline in your project to deploy your application to Fermyon Platform:

fluentci run spin_pipeline build deploy

Environment Variables

VariableDescription
SPIN_AUTH_TOKENYour Fermyon Cloud Access Token.

Jobs

JobDescription
buildBuild your Spin application (Only Rust is supported at the moment).
deployDeploy your Spin application to Fermyon Platform.

Programmatic usage

You can also use this pipeline programmatically:

import { build, deploy } from "https://pkg.fluentci.io/[email protected]/mod.ts";

await build();
await deploy();