.gitignore42 lines · main
| 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 | # next.js |
| 12 | /.next/ |
| 13 | /out/ |
| 14 | next-env.d.ts |
| 15 | |
| 16 | # production |
| 17 | /build |
| 18 | |
| 19 | # misc |
| 20 | .DS_Store |
| 21 | *.pem |
| 22 | |
| 23 | # debug |
| 24 | npm-debug.log* |
| 25 | yarn-debug.log* |
| 26 | yarn-error.log* |
| 27 | |
| 28 | # local env files |
| 29 | !.env |
| 30 | .env.local |
| 31 | .env.development.local |
| 32 | .env.test.local |
| 33 | .env.staging.local |
| 34 | .env.production.local |
| 35 | |
| 36 | .vercel |
| 37 | |
| 38 | /public/dashboard |
| 39 | # Sentry Auth Token |
| 40 | .sentryclirc |
| 41 | |
| 42 | certificates |