mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
83 lines
1.2 KiB
Plaintext
83 lines
1.2 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
|
|
# Dependencies
|
|
/node_modules
|
|
/vendor/bundle
|
|
|
|
# Environment variables
|
|
/.env
|
|
/.env.local
|
|
/.env*.local
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
/tmp/*
|
|
!/log/.keep
|
|
!/tmp/.keep
|
|
!/tmp/pids/.keep
|
|
|
|
# Ignore pidfiles, but keep the directory.
|
|
/tmp/pids/*
|
|
!/tmp/pids/.keep
|
|
|
|
# Ignore storage (uploaded files in development)
|
|
/storage/*
|
|
!/storage/.keep
|
|
/tmp/storage/*
|
|
!/tmp/storage/.keep
|
|
|
|
# Ignore assets.
|
|
/public/assets
|
|
/public/packs
|
|
/public/packs-test
|
|
|
|
# Ignore master key for decrypting credentials and more.
|
|
/config/master.key
|
|
/config/credentials/*.key
|
|
|
|
# Ignore database files
|
|
*.sqlite3
|
|
*.sqlite3-journal
|
|
*.sqlite3-*
|
|
|
|
# Ignore test coverage
|
|
/coverage/
|
|
|
|
# Ignore Byebug command history file.
|
|
.byebug_history
|
|
|
|
# Ignore node_modules
|
|
node_modules/
|
|
|
|
# Ignore yarn files
|
|
/yarn-error.log
|
|
yarn-debug.log*
|
|
.yarn-integrity
|
|
|
|
# Ignore uploaded files
|
|
/public/uploads
|
|
|
|
# Ignore Redis files
|
|
dump.rdb
|
|
|
|
# Ignore bootsnap cache
|
|
/tmp/cache/bootsnap*
|
|
|
|
# Ignore editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Ignore Docker files for local development
|
|
docker-compose.override.yml
|
|
|
|
# Ignore Kubernetes secrets
|
|
k8s/secrets.yaml
|
|
k8s/sealed-secrets.yaml
|