skeet
Version:
Full-stack TypeScript Serverless Framework
15 lines (14 loc) • 497 B
text/typescript
export const gitattributes = async (appName: string) => {
const filePath = `${appName}/.gitattributes`
const body = `apps/api/.env filter=git-crypt diff=git-crypt
apps/api/.env.build filter=git-crypt diff=git-crypt
apps/api/.env.production filter=git-crypt diff=git-crypt
apps/workers/**/.env filter=git-crypt diff=git-crypt
apps/workers/**/.env.build filter=git-crypt diff=git-crypt
apps/workers/**/.env.production filter=git-crypt diff=git-crypt
`
return {
filePath,
body,
}
}