Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 441B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Dependencies
  2. node_modules/
  3. # Logs
  4. *.log
  5. npm-debug.log*
  6. # Database files
  7. *.db
  8. *.db-shm
  9. *.db-wal
  10. *.sqlite
  11. # Certificates & keys
  12. *.pem
  13. *.key
  14. *.crt
  15. # Environment files
  16. .env
  17. .env.*
  18. !.env.example
  19. # Local deploy trigger password (never commit)
  20. deploy.secret
  21. # Build output
  22. dist/
  23. build/
  24. out/
  25. # Runtime media (created at startup by config.js)
  26. server/recordings/
  27. server/transcripts/
  28. # OS files
  29. .DS_Store
  30. Thumbs.db
  31. # Editor
  32. .vscode/
  33. .idea/