Sha256: 91f52637088e2e09f9dac313ad39a0c4fedee028201b408578837f045a58b09a
Contents?: true
Size: 1.59 KB
Versions: 4
Compression:
Stored size: 1.59 KB
Contents
require 'hanami/model' require 'hanami/mailer' Dir["#{ __dir__ }/<%= config[:app_name] %>/**/*.rb"].each { |file| require_relative file } Hanami::Model.configure do ## # Database adapter # # Available options: # # * Memory adapter # adapter type: :memory, uri: 'memory://localhost/<%= config[:app_name] %>_development' # # * SQL adapter # adapter type: :sql, uri: 'sqlite://db/<%= config[:app_name] %>_development.sqlite3' # adapter type: :sql, uri: 'postgres://localhost/<%= config[:app_name] %>_development' # adapter type: :sql, uri: 'mysql://localhost/<%= config[:app_name] %>_development' # adapter type: :<%= config[:database_config][:type] %>, uri: ENV['<%= config[:app_name].to_env_s %>_DATABASE_URL'] <%- if config[:database_config][:type] == :sql -%> ## # Migrations # migrations 'db/migrations' schema 'db/schema.sql' <%- end -%> ## # Database mapping # # Intended for specifying application wide mappings. # # You can specify mapping file to load with: # # mapping "#{__dir__}/config/mapping" # # Alternatively, you can use a block syntax like the following: # mapping do # collection :users do # entity User # repository UserRepository # # attribute :id, Integer # attribute :name, String # end end end.load! Hanami::Mailer.configure do root "#{ __dir__ }/<%= config[:app_name] %>/mailers" # See http://hanamirb.org/guides/mailers/delivery delivery do development :test test :test # production :stmp, address: ENV['SMTP_PORT'], port: 1025 end end.load!
Version data entries
4 entries across 4 versions & 1 rubygems