1
0
Fork 0
forked from wezm/wezm.net
wezm.net/config.yaml

54 lines
2.4 KiB
YAML
Raw Normal View History

2009-11-09 23:42:38 +00:00
---
# A list of file extensions that nanoc will consider to be textual rather than
# binary. If an item with an extension not in this list is found, the file
# will be considered as binary.
2010-08-04 02:52:13 +00:00
text_extensions: [ 'css', 'erb', 'haml', 'htm', 'html', 'js', 'json', 'less', 'markdown', 'mkdn', 'md', 'php', 'rb', 'sass', 'txt', 'xhtml', 'xml' ]
# The path to the directory where all generated files will be written to. This
# can be an absolute path starting with a slash, but it can also be path
# relative to the site directory.
2009-11-09 23:42:38 +00:00
output_dir: output
# A list of index filenames, i.e. names of files that will be served by a web
# server when a directory is requested. Usually, index files are named
# “index.hml”, but depending on the web server, this may be something else,
# such as “default.htm”. This list is used by nanoc to generate pretty URLs.
index_filenames: [ 'index.html' ]
# Whether or not to generate a diff of the compiled content when compiling a
# site. The diff will contain the differences between the compiled content
# before and after the last site compilation.
enable_output_diff: false
# The data sources where nanoc loads its data from. This is an array of
# hashes; each array element represents a single data source. By default,
# there is only a single data source that reads data from the “content/” and
# “layout/” directories in the site directory.
2018-08-18 07:49:02 +00:00
string_pattern_type: legacy
data_sources:
-
# The type is the identifier of the data source. By default, this will be
# `filesystem_unified`.
type: filesystem_unified
2018-08-18 07:49:02 +00:00
identifier_type: legacy
# The path where items should be mounted (comparable to mount points in
# Unix-like systems). This is “/” by default, meaning that items will have
# “/” prefixed to their identifiers. If the items root were “/en/”
# instead, an item at content/about.html would have an identifier of
# “/en/about/” instead of just “/about/”.
items_root: /
# The path where layouts should be mounted. The layouts root behaves the
# same as the items root, but applies to layouts rather than items.
2010-03-10 21:04:41 +00:00
layouts_root: /
base_url: 'http://www.wezm.net'
2010-03-14 20:22:32 +00:00
deploy:
default:
2015-06-21 11:09:37 +00:00
kind: rsync
2019-02-27 22:43:11 +00:00
dst: "hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net"
2010-08-18 10:55:19 +00:00
#options: [ '-rlpgoDvz', '--delete', '--exclude=".svn"' ]
options: [ '-avz', '--omit-dir-times', '--delete', '--exclude=".svn"' ]
2010-03-14 20:22:32 +00:00