Sha256: 684bcf82f7b09d68d94afe5eda5f314266a244627368134af008325425c9f969
Contents?: true
Size: 1.79 KB
Versions: 13
Compression:
Stored size: 1.79 KB
Contents
# # ==== Standalone <%= module_name %> configuration # # This configuration/environment file is only loaded by bin/slice, which can be # used during development of the slice. It has no effect on this slice being # loaded in a host application. To run your slice in standalone mode, just # run 'slice' from its directory. The 'slice' command is very similar to # the 'merb' command, and takes all the same options, including -i to drop # into an irb session for example. # # The usual Merb configuration directives and init.rb setup methods apply, # including use_orm and before_app_loads/after_app_loads. # # If you need need different configurations for different environments you can # even create the specific environment file in config/environments/ just like # in a regular Merb application. # # In fact, a slice is no different from a normal # Merb application - it only # differs by the fact that seamlessly integrates into a so called 'host' # application, which in turn can override or finetune the slice implementation # code and views. # Merb::Config.use do |c| # Sets up a custom session id key which is used for the session persistence # cookie name. If not specified, defaults to '_session_id'. # c[:session_id_key] = '_session_id' # The session_secret_key is only required for the cookie session store. c[:session_secret_key] = '<%= Digest::SHA1.hexdigest(rand(100000000000).to_s).to_s %>' # There are various options here, by default Merb comes with 'cookie', # 'memory', 'memcache' or 'container'. # You can of course use your favorite ORM instead: # 'datamapper', 'sequel' or 'activerecord'. c[:session_store] = 'cookie' # When running a slice standalone, you're usually developing it, # so enable template reloading by default. c[:reload_templates] = true end
Version data entries
13 entries across 13 versions & 1 rubygems