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 376B

1234567891011121314151617181920212223242526272829303132333435363738
  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. # Deploy secrets (server password / host) — keep the .example tracked
  20. deploy.config
  21. # Build output
  22. dist/
  23. build/
  24. out/
  25. # OS files
  26. .DS_Store
  27. Thumbs.db
  28. # Editor
  29. .vscode/
  30. .idea/