Add travis config
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..5c783c9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,17 @@
+language: python
+sudo: false
+
+env:
+  - LUA="lua=5.1"
+
+before_install:
+  - pip install hererocks
+  - hererocks lua_install -r^ --$LUA
+  - export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
+
+install:
+  - cd api-gateway-config/tests
+  - ./install-deps.sh
+
+script:
+  - busted --output=TAP --helper=set_paths spec/test.lua
\ No newline at end of file