- Added '*.notes.md' and '*.export' to .gitignore to prevent unnecessary files from being tracked. - Refactored job classes in the Domain::Fa module to enhance logging and job enqueuing processes, including: - Improved logging messages in Domain::Fa::Job::Base for better clarity. - Added support for a new 'enqueue_favs_scan' option in user job processing. - Enhanced the FavsJob to utilize active fav post joins and added a 'removed' flag for better management of favorites. - Updated user and post models to include scopes for active favorites and improved error handling in user creation. - Enhanced the page parser to support new formats for favorites pages and added tests for these changes.
60 lines
1.0 KiB
Plaintext
60 lines
1.0 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'
|
|
|
|
build
|
|
tmp
|
|
core
|
|
*.bundle
|
|
lib/xdiff
|
|
ext/xdiff/Makefile
|
|
ext/xdiff/xdiff
|
|
|
|
*.notes.md
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
|
|
# Ignore the default SQLite database.
|
|
/db/*.sqlite3
|
|
/db/*.sqlite3-*
|
|
|
|
# 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
|
|
|
|
/public/assets
|
|
|
|
# Ignore master key for decrypting credentials and more.
|
|
/config/master.key
|
|
|
|
/profiler/
|
|
/flamegraph.svg
|
|
/app/assets/builds/*
|
|
!/app/assets/builds/.keep
|
|
|
|
/public/packs
|
|
/public/packs-test
|
|
/node_modules
|
|
/yarn-error.log
|
|
yarn-debug.log*
|
|
.yarn-integrity
|
|
.DS_Store
|
|
*.export
|