Skip to main content

Cloud Run: With Nginx

cloud-run-with-ngnix.ts

const config = {
appName: "test-app",
customerName: "pan",
components: {
api: {
dir: "app",
build: {
type: "node",
startCommand: "",
docker: {
type: "nginx",
},
},
deploy: {
type: "google-cloudrun",
projectId: "asdf",
region: "asia-east1",
},
},
},
} satisfies Config;