8000 Remove dollar sign in command by kianmeng · Pull Request #26 · elixir-mint/mint_web_socket · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
0