1
Configuration
AJ edited this page 2025-05-19 23:19:37 -04:00
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!) "