Sha256: 05277f3cd2afad84c4f7b8eadcd9fe8386add3b4f4415e9a01fa4e2718c1535a
Contents?: true
Size: 691 Bytes
Versions: 5
Compression:
Stored size: 691 Bytes
Contents
RailsDb.setup do |config| # # enabled or not # config.enabled = true # automatic engine routes mouting config.automatic_routes_mount = false # set tables which you want to hide ONLY # config.black_list_tables = ['users'] # set tables which you want to show ONLY # config.white_list_tables = ['comments'] # # Enable http basic authentication # config.http_basic_authentication_enabled = true # # Enable http basic authentication # config.http_basic_authentication_user_name = 'rails_db' # # Enable http basic authentication # config.http_basic_authentication_password = 'password' config.verify_access_proc = proc { |e| true } config.sandbox = false end
Version data entries
5 entries across 5 versions & 1 rubygems