You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a great gem btw, really helpful, thank you.
I am having trouble with the datetime translation. I'm getting "translation missing: en.datetime.distance_in_words.less_than_x_minutes ago (2023-03-05 09:49:25 +0000)" message. Any idea what I am missing?
I'm running this in a docker container separate from my rails installation with just a config.ru file:
require 'active_support/time'
require "resque/job_history_server"
if !ENV['RESQUE_WEB_HTTP_BASIC_AUTH_USER'].nil? && !ENV['RESQUE_WEB_HTTP_BASIC_AUTH_USER'].empty?
::Resque::Server.use Rack::Auth::Basic do |username, password|
username == ENV['RESQUE_WEB_HTTP_BASIC_AUTH_USER']
password == ENV['RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD']
end
end
Hello,
This is a great gem btw, really helpful, thank you.
I am having trouble with the datetime translation. I'm getting "translation missing: en.datetime.distance_in_words.less_than_x_minutes ago (2023-03-05 09:49:25 +0000)" message. Any idea what I am missing?
I'm running this in a docker container separate from my rails installation with just a config.ru file:
This is my entrypoint for docker:
And the Dockerfile
The text was updated successfully, but these errors were encountered: