mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 06:28:57 +08:00
53c06442ef
(inspired by martin-brennan's recent adventure with `tags` exclusion) **tl;dr: some of it is obsolete, some is dev-env specific and should live in *your* ~/.gitignore.** --- To enable global gitignore (`~/.gitignore`) run: ```bash git config --global core.excludesFile '~/.gitignore' ``` Then create that file and add your VIM/VSCode/Sublime/Emacs/Eclipse/RubyMine/JetBrains/macOS/Arch/Windows 95-specific stuff. --- Reasons for removal: * `bin` - never really ignored, all the files are checked in * `.DS_Store`, `._.DS_Store` - OS specific * `.sass-cache/*`, `/.bundle`, `/bundle/*`, `/cache`, `/logfile`, `!/plugins/discourse-nginx-performance-report`, `MiniProfiler/Ruby/rack-mini-profiler-2.0.1a.gem`, `config/fog_credentials.yml`, `/public/stylesheet-cache/*`, `script/download_db`, `script/refresh_db`, `config/version.rb` - no longer used? * `/log/*.log` - covered by /log * `bootsnap-load-path-cache`, `bootsnap-compile-cache` - bootsnap now keeps its ~~trash~~ temporary files in `/tmp` * `/.project`, `/.buildpath`, `/.byebug_history`, `/.idea`, `discourse.sublime-workspace`, `*~`, `*.swp`, `*.swo`, `*.swm`, `config/multisite1.yml`, `.rvmrc`, `.ruby-version`, `.ruby-gemset`, `.rbenv`, `bundler_stubs/*`, `*.db`, `*.iml`, `*.swn`, `/package-lock.json`, `.vscode`, `.envrc`, `tags` - dev-env specific, see the note at the top of the commit
60 lines
956 B
Plaintext
60 lines
956 B
Plaintext
/copyright
|
|
/coverage
|
|
/data
|
|
/log
|
|
/tmp
|
|
|
|
/.env
|
|
/.procfile
|
|
/dump.rdb
|
|
|
|
/config/discourse.conf
|
|
/config/discourse.pill
|
|
/config/multisite.yml
|
|
# `discourse_dev` gem
|
|
/config/dev.yml
|
|
|
|
/public/assets
|
|
/public/backups
|
|
/public/csv
|
|
/public/fonts
|
|
/public/plugins
|
|
/public/tombstone
|
|
/public/uploads
|
|
|
|
# Ignore the default SQLite database and db dumps
|
|
*.sql
|
|
*.sql.gz
|
|
!/spec/fixtures/**/*.sql
|
|
/db/*.sqlite3
|
|
/db/structure.sql
|
|
/db/schema.rb
|
|
/db/schema_cache.yml
|
|
|
|
# Plugins except for the bundled ones
|
|
/plugins/*
|
|
!/plugins/discourse-details/
|
|
!/plugins/discourse-local-dates
|
|
!/plugins/discourse-narrative-bot
|
|
!/plugins/discourse-presence
|
|
!/plugins/lazy-yt/
|
|
!/plugins/poll/
|
|
!/plugins/styleguide
|
|
/plugins/*/auto_generated/
|
|
|
|
/spec/fixtures/plugins/my_plugin/auto_generated
|
|
|
|
/vendor/bundle/*
|
|
/vendor/data/GeoLite2-City.mmdb
|
|
|
|
# Front-end
|
|
dist
|
|
node_modules
|
|
yarn-error.log
|
|
|
|
# Auto-generated plugin JS assets
|
|
/app/assets/javascripts/plugins/*
|
|
|
|
# Generated API documentation files
|
|
openapi/*
|