class Dotenv::Rails

def load

can manually call `Dotenv::Rails.load` if you needed it sooner.
This will get called during the `before_configuration` callback, but you

Public: Load dotenv
def load
  Dotenv.load(*files.map { |file| root.join(file).to_s }, overwrite: overwrite)
end