Sha256: 1558adaa1116a98a385efdcef6a8497243e681d42220a1c5800772b4b17001a7

Contents?: true

Size: 1.75 KB

Versions: 3

Compression:

Stored size: 1.75 KB

Contents

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

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

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

# ----------------------
#  Layouts folder:
#
#  Frank will look for layouts in this folder
#  the default layout is `default'
#  it respects nested layouts that correspond to nested
#  folders in the `dynamic_folder'
#  for example: a template: `dynamic_folder/blog/a-blog-post.haml'
#  would look for a layout: `layouts/blog/default.haml'
#  and if not found use the default: `layouts/default.haml'
#
#  Frank also supports defining layouts on an
#  individual template basis using meta data
#  you can do this by defining a meta field `layout: my_layout.haml'
#
Frank.layouts_folder = "layouts"

# ----------------------
#  Publish settings:
#
#  Frank can publish your exported project to
#  a server. All you have to do is tell Frank what host, path, and username.
#  If you have ssh keys setup there is no need for a password.
#  Just uncomment the Publish settings below and
#  make the appropriate changes.
#
#  Frank.publish.host = "example.com"
#  Frank.publish.path = "/www"
#  Frank.publish.username = 'me'
#  Frank.publish.password = 'secret'
#  Frank.publish.port = 22
#



# ----------------------
# Initializers:
#
# Add any other project setup code, or requires here
# ....

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
frank-1.0.2 lib/template/setup.rb
frank-1.0.1 lib/template/setup.rb
frank-1.0.0 lib/template/setup.rb