From 345d5f17bb5463f1cb6229b931dbb8e45719b3e1 Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Wed, 12 Sep 2018 22:02:56 -0500 Subject: [PATCH] Finished commenting config file --- config.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/config.php b/config.php index 4517e63..39cc883 100644 --- a/config.php +++ b/config.php @@ -16,9 +16,33 @@ return [ * */ 'code_dir' => __DIR__ . '/code', + + /* + * + * Directory to PHP templates used by pages + * + */ 'templates_dir' => __DIR__ . '/assets/templates', + + /* + * + * Output directory for html files and assets + * + */ 'output_dir' => __DIR__ . '/.build', + + /* + * + * Static files that should be loaded into output directory + * + */ 'files_dir' => __DIR__ . '/assets/files', + + /* + * + * Configuration for all pages on the site + * + */ 'pages' => [ Page::create('index', 'index.phtml'), Page::create('installing-php', 'installing-php.phtml'),