Sha256: df68d3477cd5dd8a99d5a5a70f572325203e69cd7c368155850a1f7c199720bc
Contents?: true
Size: 552 Bytes
Versions: 2
Compression:
Stored size: 552 Bytes
Contents
require 'bundler/setup' require 'pakyow' Pakyow::App.define do configure :global do # put global config here and they'll be available across environments end configure :development do # put development config here end configure :prototype do # an environment for running the front-end prototype with no backend app.ignore_routes = true end configure :production do # suggested production configuration app.auto_reload = false app.errors_in_browser = false # put your production config here end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pakyow-0.8.0 | lib/generators/pakyow/app/templates/app.rb |
pakyow-0.8.rc4 | lib/generators/pakyow/app/templates/app.rb |