* Adds optional support for Docker/Compose * Upgrades Dockerfile to use a multi-stage build * Gets rest of stack running in Docker * Renames queue to jobs, uses jobs namespace command * Reverts file * Adds webpacker * Fixes yarn check issue * Adds Database URL default connection string * Remove daemons gem * Update huskyhook config * Update seed.rb * Create .dockerignore * Increase RackTimeout's config * Simplify Docker config * Update README * Remove postgres url default * Change docker entry point to 3000 * Remove duped integrity setting
7 lines
279 B
Ruby
7 lines
279 B
Ruby
if Rails.env.development? && ENV["RACK_TIMEOUT_WAIT_TIMEOUT"].nil?
|
|
ENV["RACK_TIMEOUT_WAIT_TIMEOUT"] = "100000"
|
|
ENV["RACK_TIMEOUT_SERVICE_TIMEOUT"] = "100000"
|
|
end
|
|
|
|
Rack::Timeout.unregister_state_change_observer(:logger) if Rails.env.development?
|
|
Rack::Timeout::Logger.disable
|