@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
29 lines (25 loc) • 506 B
text/typescript
import type { Config } from "../src";
const config = {
appName: "test-app",
customerName: "pan",
components: {
www: {
dir: "www",
build: {
type: "node",
cache: {
paths: [".next/cache"],
},
},
deploy: {
type: "google-cloudrun",
projectId: "google-project-id",
region: "europe-west6",
},
},
},
} satisfies Config;
export default config;
export const information = {
title: "Cloud Run: With SQL",
};