1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-08-06 06:47:58 +02:00

Finished commenting config file

This commit is contained in:
Andrew Davis
2018-09-12 22:02:56 -05:00
parent c2bfe21c7a
commit 345d5f17bb

View File

@@ -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'),