Initial commit
diff --git a/conf/localConfig.js b/conf/localConfig.js
new file mode 100644
index 0000000..35236de
--- /dev/null
+++ b/conf/localConfig.js
@@ -0,0 +1,18 @@
+{
+	{%- for backend in pillar.statsd.backends %}
+	{%- if backend.type == 'graphite' %}
+	graphitePort: {{ backend.port }},
+	graphiteHost: "{{ backend.host }}",
+	{%- endif %}
+	{%- if backend.type == 'amqp' %}
+	amqpHost: '{{ backend.host }}',
+	amqpPort: {{ backend.port }},
+	amqpLogin: '{{ backend.user }}',
+	amqpPassword: '{{ backend.password }}',
+	amqpVhost: '{{ backend.virtual_host }}',
+	amqpQueue: '{{ backend.queue }}',
+	amqpDefaultExchange: '{{ backend.exchange }}',
+	{%- endif %}
+	{%- endfor %}
+	port: {{ pillar.statsd.bind_port }}
+}
\ No newline at end of file