Sha256: f8408443ded65cb575d6a89b77c66e44ab799d95631521f42a53855b813467da

Contents?: true

Size: 352 Bytes

Versions: 7

Compression:

Stored size: 352 Bytes

Contents

require 'bundler/setup'
require 'hanami/setup'
require 'hanami/model'
require_relative '../apps/web/application'

Hanami.configure do
  mount Web::Application, at: '/'

  model do
    adapter :sql, ENV.fetch('DATABASE_URL')
  end

  environment :development do
    # See: https://guides.hanamirb.org/projects/logging
    logger level: :debug
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
flagsmith-4.0.1 example/config/environment.rb
flagsmith-4.0.0 example/config/environment.rb
flagsmith-3.2.0 example/config/environment.rb
flagsmith-3.1.1 example/config/environment.rb
flagsmith-3.1.0 example/config/environment.rb
flagsmith-3.0.1 example/config/environment.rb
flagsmith-3.0.0 example/config/environment.rb