mirror of
https://github.com/Freika/dawarich.git
synced 2025-12-16 18:26:09 -06:00
88 lines
1.7 KiB
Plaintext
88 lines
1.7 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile '~/.gitignore_global'
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
/tmp/*
|
|
!/log/.keep
|
|
!/tmp/.keep
|
|
|
|
# Ignore pidfiles, but keep the directory.
|
|
/tmp/pids/*
|
|
!/tmp/pids/
|
|
!/tmp/pids/.keep
|
|
|
|
# Ignore uploaded files in development.
|
|
/storage/*
|
|
!/storage/.keep
|
|
/tmp/storage/*
|
|
!/tmp/storage/
|
|
!/tmp/storage/.keep
|
|
/tmp/imports/*
|
|
!/tmp/imports/
|
|
/tmp/imports/watched/*
|
|
!/tmp/imports/watched/
|
|
!/tmp/imports/watched/.keep
|
|
!/tmp/imports/watched/put-your-directory-here.txt
|
|
|
|
|
|
/public/assets
|
|
|
|
# Ignore all files under /public/exports except the .keep file
|
|
/public/exports/*
|
|
!/public/exports/.keep
|
|
!/public/exports/
|
|
|
|
# Ignore all files under /public/imports, but keep .keep files and the watched directory
|
|
/public/imports/*
|
|
!/public/imports/.keep
|
|
|
|
# Ignore master key for decrypting credentials and more.
|
|
/config/master.key
|
|
/coverage
|
|
/node_modules
|
|
|
|
!/app/assets/builds/.keep
|
|
.DS_Store
|
|
.env
|
|
|
|
.byebug_history
|
|
|
|
|
|
.devcontainer/.onCreateCommandMarker
|
|
.devcontainer/.postCreateCommandMarker
|
|
.devcontainer/.updateContentCommandMarker
|
|
|
|
.vscode-server/
|
|
.ash_history
|
|
.cache/
|
|
.dotnet/
|
|
.cursorrules
|
|
.cursormemory.md
|
|
.serena/**/*
|
|
|
|
/config/credentials/production.key
|
|
/config/credentials/production.yml.enc
|
|
/config/credentials/staging.key
|
|
/config/credentials/staging.yml.enc
|
|
|
|
Makefile
|
|
|
|
/db/*.sqlite3
|
|
/db/*.sqlite3-shm
|
|
/db/*.sqlite3-wal
|
|
|
|
# Playwright
|
|
node_modules/
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
/e2e/temp/
|