Add 'Configuration'

2025-05-19 23:19:37 -04:00
parent 637dbed832
commit e20d10a5d4

39
Configuration.md Normal file

@@ -0,0 +1,39 @@
Builderman reads config.xml to generate builds.
It looks something like this:
```
<?xml version="1.0" encoding="UTF-8"?>
<builds>
<build>
<name>full</name>
<include>
<tag>header</tag>
<tag>main</tag>
<tag>aside</tag>
<tag>footer</tag>
</include>
<style src="styles.css"/>
</build>
<build>
<name>minimal</name>
<include>
<tag>main</tag>
</include>
<exclude>
<tag>header</tag>
<tag>footer</tag>
<tag>aside</tag>
<tag>nav</tag>
</exclude>
<style src="styles.css"/>
</build>
<build>
<name>no-nav</name>
<exclude>
<tag>nav</tag>
</exclude>
<style src="styles.css"/>
</build>
</builds>
```
Name will be the name of the output folder for the build (you can have multiple!)
"