Added config.py and edited README.md to reflect new installation steps.
[cmless] / bin / config.py
diff --git a/bin/config.py b/bin/config.py
new file mode 100644 (file)
index 0000000..3c196a1
--- /dev/null
@@ -0,0 +1,19 @@
+# (c) 2017 Aaron Taylor <ataylor at subgeniuskitty dot com>
+# See LICENSE file for copyright and license details.
+
+#####
+# CMless Configuration Options
+#####
+
+# The prefix to the website content relative to the bin/ folder which contains
+# the CMless code.
+site_path_prefix = "../site"
+
+# Full path to the markup processor which can interpret the data files in
+# site_path_prefix and output HTML. It should accept markup data on stdin and
+# output HTML on stdout.
+markup_processor = "/usr/bin/markdown"
+
+# File extension associated with the markup format used by the data files in
+# site_path_prefix.
+markup_file_extension = ".md"