@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
28 lines (24 loc) • 603 B
text/typescript
import type { Config } from "../src";
const config = {
appName: "test-app",
customerName: "pan",
components: {
api: {
dotEnv: "local", // creates .env file only locally, not during build
envDTs: true, // creates type files based on env vars, so that process.env is typed
dir: "api",
build: {
type: "node",
},
deploy: {
type: "google-cloudrun",
projectId: "google-project-id",
region: "europe-west6",
},
},
},
} satisfies Config;
export default config;
export const information = {
title: "Local Dot Env",
};