/ .gitignore
.gitignore
1 # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 3 # dependencies 4 /node_modules 5 /.pnp 6 .pnp.js 7 8 # testing 9 /coverage 10 11 # database 12 /prisma/db.sqlite 13 /prisma/db.sqlite-journal 14 15 # next.js 16 /.next/ 17 /out/ 18 next-env.d.ts 19 20 # production 21 /build 22 23 # misc 24 .DS_Store 25 *.pem 26 27 # debug 28 npm-debug.log* 29 yarn-debug.log* 30 yarn-error.log* 31 .pnpm-debug.log* 32 33 # local env files 34 # do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables 35 .env 36 .env*.local 37 38 # vercel 39 .vercel 40 41 # typescript 42 *.tsbuildinfo