From e472fc9c0e855bd58aa0fec1c69cd659e81ca232 Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Fri, 7 Apr 2023 15:34:09 +0700 Subject: [PATCH] docs: additional guide on finishing --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index b7bf914..4cd0a55 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,28 @@ into `localhost`. You can create a Dockerfile and add a new service schema on `docker-compose.yml` file to state your frontend container configuration. +## How do I know if I did it? + +Easy, run the Docker Compose. Build everything. See the frontend if it works. See the Redpanda Console if you +published and consume your topics and messages flawlessly. + +```bash +docker compose up -d +``` + +To stop it, use + +```bash +docker compose down +``` + +If you'd like to run just a few services for your local development purposes, for example only `postgres` and `kafka` +services, you can specify it on the `up` command, like so: + +```bash +docker compose up -d postgres kafka +``` + ## Words of affirmation Good luck, you can do it! \ No newline at end of file