.gitignore 513 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # dependencies
  2. node_modules
  3. .pnp
  4. .pnp.js
  5. # next.js
  6. /frontend/.next/
  7. /frontend/out/
  8. # yarn
  9. yarn.lock
  10. # build
  11. build/
  12. dist/
  13. # misc
  14. .DS_Store
  15. *.pem
  16. # debug
  17. npm-debug.log*
  18. yarn-debug.log*
  19. yarn-error.log*
  20. .pnpm-debug.log*
  21. # env file
  22. .env
  23. !/backend/prisma/.env
  24. # vercel
  25. .vercel
  26. # typescript
  27. *.tsbuildinfo
  28. # PWA
  29. /frontend/public/workbox-*
  30. /frontend/public/sw.*
  31. # project specific
  32. /backend/data/
  33. /data/
  34. /docs/build/
  35. /docs/.docusaurus
  36. /docs/.cache-loader
  37. /config.yaml
  38. # Jetbrains specific (webstorm)
  39. .idea/**/**