From 7cb1c51dc3e9abaf2c21196a9cdb4e542e7719d3 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Sat, 22 Oct 2022 23:14:52 +0800 Subject: [PATCH] Remove dollar sign in command Easier for developer to copy and paste and reduce noise when reading. See https://cirosantilli.com/markdown-style-guide/#dollar-signs-in-shell-code --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7b18c27d..28d6d623 100644 --- a/README.md +++ b/README.md @@ -88,12 +88,19 @@ to run the fuzzing test suite. The `docker-compose.yml` sets up an Elixir container, a simple websocket echo server, and the Autobahn|Testsuite fuzzing server. +In host: + +```sh +docker-compose up -d +docker-compose exec app bash ``` -(host)$ docker-compose up -d -(host)$ docker-compose exec app bash -(app)$ mix deps.get -(app)$ mix test -(app)$ iex -S mix + +In app: + +```sh +mix deps.get +mix test +iex -S mix ``` [ci-badge]: https://github.com/elixir-mint/mint_web_socket/workflows/CI/badge.svg