UNPKG

skeet

Version:

Full-stack TypeScript Serverless Framework

16 lines (14 loc) 286 B
import { execSyncCmd } from '@/lib/execSyncCmd' export const appCreate = async (projectId: string, region: string) => { const shCmd = [ 'gcloud', 'app', 'create', '--region', region, '--quiet', '--project', projectId, ] await execSyncCmd(shCmd) }