scinote-web/.gitignore

63 lines
1.1 KiB
Plaintext
Raw Normal View History

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
# 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/*
2016-07-21 19:11:15 +08:00
# Ignore robots.txt
public/robots.txt
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
/production.env
2016-08-08 21:04:52 +08:00
# Ignore rubocop cache files
rubocop_cache
# Ignore ESLint local instalation
node_modules
2017-07-06 15:07:05 +08:00
# Ignore Coverage output
coverage
2017-07-12 22:41:55 +08:00
# Added during webpacker install
/public/packs
/node_modules