ぼざクリ タグ広場 https://hub.nizika.monster
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.
 
 
 
 
 
 

61 lines
832 B

  1. # 一般的な OS の不要ファイル
  2. .DS_Store
  3. Thumbs.db
  4. # エディタ関連
  5. .idea/
  6. .vscode/
  7. # Node.js(React 用)
  8. node_modules/
  9. npm-debug.log
  10. yarn-debug.log
  11. yarn-error.log
  12. # 環境変数ファイル
  13. .env
  14. .env.local
  15. .env.development
  16. .env.test
  17. .env.production
  18. # ログファイル
  19. log/*
  20. !log/.keep
  21. # キャッシュ
  22. tmp/*
  23. !tmp/.keep
  24. # バンドル済み gem(Rails)
  25. vendor/bundle/
  26. vendor/cache/
  27. # データベース関連
  28. db/*.sqlite3
  29. db/*.sqlite3-journal
  30. # MySQL / PostgreSQL / SQLite
  31. config/database.yml
  32. config/secrets.yml
  33. config/master.key
  34. config/credentials.yml.enc
  35. # アップロードされたファイル(Active Storage)
  36. storage/*
  37. !storage/.keep
  38. # 依存関係
  39. .bundle/
  40. .byebug_history
  41. # テスト結果
  42. coverage/
  43. spec/reports/
  44. test/reports/
  45. # 一時ファイル
  46. tmp/pids/*
  47. tmp/cache/*
  48. tmp/sockets/*