diff --git a/.cfignore b/.cfignore
new file mode 100644
index 0000000000000000000000000000000000000000..124eb4d817a9fd4c0ab1a6821b94a1b62ef46d56
--- /dev/null
+++ b/.cfignore
@@ -0,0 +1,2 @@
+launchConfigurations/
+.git/
\ No newline at end of file
diff --git a/launchConfigurations/dummy-service.launch b/launchConfigurations/dummy-service.launch
new file mode 100644
index 0000000000000000000000000000000000000000..615918c58b412e00e7cf0bb684d469cc808cc0b3
--- /dev/null
+++ b/launchConfigurations/dummy-service.launch
@@ -0,0 +1,17 @@
+{
+  "ServiceId": "com.ibm.cloudoe.orion.client.deploy",
+  "Params": {
+    "Target": {
+      "Url": "https://api.eu-gb.cf.cloud.ibm.com",
+      "Org": "organisation one",
+      "Space": "dev"
+    },
+    "Name": "dummy-service",
+    "Instrumentation": {
+      "domain": "eu-gb.mybluemix.net",
+      "instances": "1"
+    }
+  },
+  "Path": "manifest.yml",
+  "Type": "Cloud Foundry"
+}
\ No newline at end of file
diff --git a/manifest.yml b/manifest.yml
new file mode 100644
index 0000000000000000000000000000000000000000..af2459c4095cfd7a2b2c571a72171cd4d833d458
--- /dev/null
+++ b/manifest.yml
@@ -0,0 +1,6 @@
+---
+applications:
+- buildpack: https://github.com/cloudfoundry/staticfile-buildpack.git
+  host: dummy-service
+  name: dummy-service
+  memory: 64M
\ No newline at end of file