Sha256: 18f4f1ca885ee14b4b7fd1030dba711b45fc146190390bf8e01cf30d0db7865c
Contents?: true
Size: 996 Bytes
Versions: 20
Compression:
Stored size: 996 Bytes
Contents
development: name: app_name_development base_url: http://localhost:9292/ static_urls: ["/favicon.ico", "/robots.txt", "/css", "/images", "/html", "/js"] static_root: static 404: static/404.html 500: static/500.html production: name: app_name_production base_url: http://example.com/ static_urls: ["/favicon.ico", "/robots.txt", "/css", "/images", "/html", "/js"] static_root: static 404: static/404.html 500: static/500.html # test automatically loads the app with 127.0.0.1:5000 test: name: app_name_test base_url: http://localhost:5000 static_urls: ["/favicon.ico", "/robots.txt", "/css", "/images", "/html", "/js"] static_root: static 404: static/404.html 500: static/500.html # this is the default server to use when starting up the app clusters # add multiple ip:port csv values. all are loaded for production. # only the first is loaded for development clusters: server: mongrel apps: ["127.0.0.1:9292"]
Version data entries
20 entries across 18 versions & 2 rubygems