UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

27 lines (23 loc) 476 B
import type { Config } from "../src"; const config = { appName: "test-app", customerName: "pan", components: { www: { dir: "www", build: { type: "node", jobImage: "my-custom-image", }, deploy: { type: "google-cloudrun", projectId: "asdf", region: "asia-east1", }, }, }, } satisfies Config; export default config; export const information = { title: "Node: Build with Custom Image", };