Sha256: c31ef00d5cc1ffdaab1ba7d251bef948c451c22b8703b46bdeba8a477f870d4a

Contents?: true

Size: 1.52 KB

Versions: 1

Compression:

Stored size: 1.52 KB

Contents

# -----------------------------------------------
#  Frank settings:
#
#  These settings will apply to this project only.
#  If you would like to use this project as a
#  template for new projects, just copy this
#  project folder to `~/.frank` and it will be
#  duplicated for you every time you run the
# `frank` command.
#
#  Feel free to trash all these comments, too.
#

env: test

# ----------------------
#  Server settings:
#
#  Change the server host/port to bind rack to.
# 'server' can be any Rack-supported server, e.g.
#  Mongrel, Thin, WEBrick
#
server:
  handler: mongrel
  hostname: localhost
  port: 3601


# ----------------------
#  Static folder:
#
#  All files in this folder will be served up
#  directly, without interpretation
#
static_folder: static

# ----------------------
#  Dynamic folder:
#
#  Frank will try to interpret any of the files
#  in this folder based on their extension
#
dynamic_folder: dynamic

# ----------------------
#  Templates:
#
# 'default' is the optional default template to
#  serve from a folder (include the root folder)
#
# 'layouts' is a list of layouts to use, where
# 'name' is the filename (without extension).
#  You can also use multiple layouts, and limit
#  their scopes like so:
#      - name: blog_layout
#        only: [blog]
#      - name: normal
#        not: [blog, ajax]
templates:
    extension: haml
    default: index
    layouts:
        - name: layout
          not: [builder, erb, liquid, markdown, mustache, redcloth]
        - name: layout2
          only: [layout2_test]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
frank-0.2.0 test/template/settings.yml