2016-02-12 23:52:43 +08:00
|
|
|
# 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
|
|
|
|
|
2023-06-21 20:13:20 +08:00
|
|
|
# Ignore addons
|
|
|
|
|
|
|
|
/addons
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Ignore the default SQLite database.
|
|
|
|
/db/*.sqlite3
|
|
|
|
/db/*.sqlite3-journal
|
|
|
|
|
|
|
|
# Ignore PostgreSQL dump files
|
|
|
|
/db/*.dump
|
|
|
|
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
|
|
/log/*
|
|
|
|
!/log/.keep
|
|
|
|
/tmp
|
|
|
|
|
|
|
|
# Ignore gems etc. if built in bundle
|
|
|
|
/vendor/bundle
|
|
|
|
|
|
|
|
# Ignore custom wmake user file
|
|
|
|
wmake.sh
|
|
|
|
|
|
|
|
# Windows image file caches
|
|
|
|
Thumbs.db
|
|
|
|
ehthumbs.db
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
# Byebug temp file
|
|
|
|
/.byebug_history
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Ignore temporary files
|
|
|
|
public/system/*
|
|
|
|
|
2021-08-26 21:26:35 +08:00
|
|
|
# Ignore BioEddie installion in public folder
|
|
|
|
public/bio_eddie/
|
|
|
|
|
2019-06-24 21:17:42 +08:00
|
|
|
# Ignore ActiveStorage Disc service storage directory
|
|
|
|
storage/
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
# Ignore robots.txt
|
|
|
|
public/robots.txt
|
|
|
|
|
2018-10-24 01:18:19 +08:00
|
|
|
$ Ignore compiled assets
|
|
|
|
public/packs-test/*
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
tags
|
|
|
|
*.orig
|
|
|
|
*.swp
|
2016-09-14 00:53:44 +08:00
|
|
|
*.out
|
|
|
|
*.db
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
# Ignore application configuration
|
2016-07-21 19:11:15 +08:00
|
|
|
/config/application.yml
|
2017-03-29 22:00:11 +08:00
|
|
|
/production.env
|
2016-08-08 21:04:52 +08:00
|
|
|
|
|
|
|
# Ignore rubocop cache files
|
|
|
|
rubocop_cache
|
2016-10-05 20:12:19 +08:00
|
|
|
|
|
|
|
# Ignore ESLint local instalation
|
|
|
|
node_modules
|
2017-07-06 15:07:05 +08:00
|
|
|
|
|
|
|
# Ignore Coverage output
|
|
|
|
coverage
|
2017-07-26 22:20:09 +08:00
|
|
|
|
2017-07-12 22:41:55 +08:00
|
|
|
# Added during webpacker install
|
|
|
|
/public/packs
|
|
|
|
/node_modules
|
2018-01-16 16:17:14 +08:00
|
|
|
.DS_Store
|
2018-01-16 16:58:51 +08:00
|
|
|
app/javascript/src/componentLoader/components/*
|
2018-02-01 20:37:52 +08:00
|
|
|
|
|
|
|
# ignore addon features
|
2018-02-01 22:31:36 +08:00
|
|
|
features/addons
|
|
|
|
spec/addons
|
2018-02-01 20:37:52 +08:00
|
|
|
!features/addons/.gitkeep
|
2018-02-01 22:31:36 +08:00
|
|
|
!spec/addons/.gitkeep
|
2019-01-16 22:02:23 +08:00
|
|
|
|
|
|
|
# RVM/rbenv ruby version for local development
|
|
|
|
.ruby-version
|
2019-04-27 02:33:20 +08:00
|
|
|
|
2021-04-18 16:49:22 +08:00
|
|
|
# Ignore marvinJs
|
2019-04-27 02:33:20 +08:00
|
|
|
|
|
|
|
public/marvinjs
|
|
|
|
public/marvin4js-license.cxl
|
2021-04-18 16:49:22 +08:00
|
|
|
|
|
|
|
# Ignore JetBrains
|
|
|
|
.idea/
|
2023-03-30 19:27:10 +08:00
|
|
|
|
|
|
|
/app/assets/builds/*
|
|
|
|
!/app/assets/builds/.keep
|