diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..320558ae2954f9e9c5a7c9123ee4228d2d694706
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+SHELL := /bin/bash
+
+default: build
+
+build:
+	pip install -Ur requirements.txt
+
+start: 
+	@echo Starting supervisord
+	source setenv.sh
+	supervisord -c supervisord.conf
+
+.PHONY: build start stop