UNPKG

skeet

Version:

Full-stack TypeScript Serverless Framework

10 lines (9 loc) 273 B
export const apiEnv = async (appName: string) => { const filePath = `${appName}/apps/api/.env` const body = `DATABASE_URL=postgresql://skeeter:rabbit@localhost:5432/skeet-${appName}-dev?schema=public NO_PEER_DEPENDENCY_CHECK=1` return { filePath, body, } }