Files
btrc-hub/.gitignore
T
2025-02-25 22:43:13 +09:00

61 lines
832 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 一般的な OS の不要ファイル
.DS_Store
Thumbs.db
# エディタ関連
.idea/
.vscode/
# Node.jsReact 用)
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
# バンドル済み gemRails
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/*