Files
danbooru/config/environments
evazion 0f0f7c768b jobs: use GoodJob in development.
Use the GoodJob job adapter instead of the default Rails async job
adapter in development mode.

The default async adapter runs jobs in a background thread in the
`bin/rails server` process, but this sometimes has problems with jobs
blocking the main server thread. The job queue interface at `/jobs` also
didn't work with this.

This means that now you have to run `bin/good_job start` in development
mode in order to work background jobs. This is required for uploads to
work.
2022-03-06 20:29:56 -06:00
..

Environments

This directory contains environment-specific Rails configuration. This lets us have different configuration settings in development, test, and production modes.

Universal Rails configuration goes in config/application.rb or in config/initializers.

See also

External links