61 lines
832 B
Plaintext
61 lines
832 B
Plaintext
# 一般的な OS の不要ファイル
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# エディタ関連
|
||
.idea/
|
||
.vscode/
|
||
|
||
# Node.js(React 用)
|
||
node_modules/
|
||
npm-debug.log
|
||
yarn-debug.log
|
||
yarn-error.log
|
||
|
||
# 環境変数ファイル
|
||
.env
|
||
.env.local
|
||
.env.development
|
||
.env.test
|
||
.env.production
|
||
|
||
# ログファイル
|
||
log/*
|
||
!log/.keep
|
||
|
||
# キャッシュ
|
||
tmp/*
|
||
!tmp/.keep
|
||
|
||
# バンドル済み gem(Rails)
|
||
vendor/bundle/
|
||
vendor/cache/
|
||
|
||
# データベース関連
|
||
db/*.sqlite3
|
||
db/*.sqlite3-journal
|
||
|
||
# MySQL / PostgreSQL / SQLite
|
||
config/database.yml
|
||
config/secrets.yml
|
||
config/master.key
|
||
config/credentials.yml.enc
|
||
|
||
# アップロードされたファイル(Active Storage)
|
||
storage/*
|
||
!storage/.keep
|
||
|
||
# 依存関係
|
||
.bundle/
|
||
.byebug_history
|
||
|
||
# テスト結果
|
||
coverage/
|
||
spec/reports/
|
||
test/reports/
|
||
|
||
# 一時ファイル
|
||
tmp/pids/*
|
||
tmp/cache/*
|
||
tmp/sockets/*
|