Sha256: de20a909adf9b61897656c9b471680b52bf55eb633fe8a3e15d8fd103cd73913

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

##
# This file mounts each app in the Padrino project to a specified sub-uri.
# You can mount additional applications using any of these commands below:
#
#   Padrino.mount('blog').to('/blog')
#   Padrino.mount('blog', :app_class => 'BlogApp').to('/blog')
#   Padrino.mount('blog', :app_file =>  'path/to/blog/app.rb').to('/blog')
#
# You can also map apps to a specified host:
#
#   Padrino.mount('Admin').host('admin.example.org')
#   Padrino.mount('WebSite').host(/.*\.?example.org/)
#   Padrino.mount('Foo').to('/foo').host('bar.example.org')
#
# Note 1: Mounted apps (by default) should be placed into the project root at '/app_name'.
# Note 2: If you use the host matching remember to respect the order of the rules.
#
# By default, this file mounts the primary app which was generated with this project.
# However, the mounted app can be modified as needed:
#
#   Padrino.mount('AppName', :app_file => 'path/to/file', :app_class => 'BlogApp').to('/')
#

##
# Setup global project settings for your apps. These settings are inherited by every subapp. You can
# override these settings in the subapps as needed.
#
Padrino.configure_apps do
  # enable :sessions
  set :session_secret, '<%= SecureRandom.hex(32) %>'
  set :protection, true
  set :protect_from_csrf, true
end

# Mounts the core application for this project
Padrino.mount('<%= @project_name.to_s %>::<%= @app_name.to_s %>', :app_file => Padrino.root('app/app.rb')).to('/')

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
padrino-gen-0.11.4 lib/padrino-gen/generators/project/config/apps.rb.tt
padrino-gen-0.11.3 lib/padrino-gen/generators/project/config/apps.rb.tt
padrino-gen-0.11.2 lib/padrino-gen/generators/project/config/apps.rb.tt
padrino-gen-0.11.1 lib/padrino-gen/generators/project/config/apps.rb.tt
padrino-gen-0.11.0 lib/padrino-gen/generators/project/config/apps.rb.tt