diff --git a/README.md b/README.md
index 715917f..5af96dc 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,22 @@
-# Ozone Haiti
+# Ozone Haiti ðŸ‡ðŸ‡¹
-**Ozone Haiti** is a distribution of [Ozone HIS](https://www.ozone-his.com).
+**Ozone Haiti** packages common configurations and metadata to use [Ozone HIS](https://www.ozone-his.com) in Haiti.
-A technical guide to help implementers building and running the project can be found [here](readme/impl-guide.md).
+Available commands to build and run the project:
+https://docs.ozone-his.com/create-distro/#available-commands
+---
+
+
+
+
+Health Information System
+
+
+
Engage with the Ozone community and access useful resources below:
+
+
+
\ No newline at end of file
diff --git a/readme/impl-guide.md b/readme/impl-guide.md
deleted file mode 100644
index 6a247c0..0000000
--- a/readme/impl-guide.md
+++ /dev/null
@@ -1,55 +0,0 @@
-# Ozone Haiti - Implementer Guide
-
-This distribution can be run using the [Ozone Docker Compose](https://github.com/ozone-his/ozone-docker-compose) project, which is the default configuration for this. The quick start command below is for demonstration and trial purposes and would not be suitable for a stable environment.
-
-
-Build
-```bash
-./scripts/mvnw clean package
-```
-
-Run
-```bash
-source target/go-to-scripts-dir.sh
-./start-ozone.sh
-```
-
-
-If needed to work on the distro configurations and see the results, you have several options:
-- (1) Turn down the whole project with its volumes, build again and run.
-- (2) Replace files in the mounted Docker volume (all files or only individual files)
-
-```bash
-source target/go-to-scripts-dir.sh
-./destroy-demo.sh
-```
-
-Re-build:
-```bash
-./scripts/mvnw clean package
-```
-
-Then start afresh:
-```bash
-source target/go-to-scripts-dir.sh
-./start.sh
-```
-
-```bash
-rsync -av configs/ target/ozone-Ozone Haiti-/distro/configs
-```
-(replace `` with the current version of ozone-kenya)
-
-
-It is possible to exclude some of the files inherited from the parent Ozone Distro transitive dependencies (thus the OpenMRS Distro Reference Application).
-This can be achieved by providing your exclusion path in the main pom.xml, using the Maven Resource plugin `excludes`:
-
-Eg.:
-```xml
-${project.build.directory}/ozone
-
- distro/**/appointment*
- distro/**/concepts*demo.csv
- ...
-
-```