-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-sample.php
56 lines (52 loc) · 1.23 KB
/
config-sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* Beskrivning.
*
* @package SlimPHPBuilder
* @author Eric Wallmander
* Date: 2012-10-31
* Time: 22:10
*/
// @todo Documentation
return array(
'template' => array
(
'projectName' => 'New Project'
,'bodyClasses' => array
(
'index' => array('classone','classtwo')
,'page' => array('classone','classtwo')
)
)
,'build' => array
(
'baseURL' => 'http://localhost/proejct' // Full URL to project site. No ending /
,'buildPath' => 'build/' // With ending /
,'changelog' => 'CHANGELOG.txt' // Changelog file
/**
* 'phpFile' => 'builedHtmlFile'
*/
,'pages' => array
(
'index' => 'index'
,'about' => 'about'
)
,'dirs' => array
(
'css'
,'images'
,'js'
)
/**
* Exclude dirs and files
* @todo Implement in builder
*/
,'exclude' => array
(
'css/test.css'
,'js/test.js'
,'images/test.png'
)
,'buildMethod' => 'curl' // Comandline, curl
)
);