Skip to content

Commit

Permalink
Update README.md (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-auo authored Sep 27, 2024
1 parent bcbc979 commit f25f692
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,16 @@ Notice: You must use -e for docker environment.You could get it from your docker
docker run -d --name emitter -p 8080:8080 --restart=unless-stopped emitter/server
```

Alternatively, you might compile this repository and use `go get` command to rebuild and run from source.
Alternatively, you can build and run from source.

```shell
go get -u github.com/emitter-io/emitter && emitter
# install git and go
# depending on your system, you may also need to install gcc and musl-dev
git clone https://github.com/emitter-io/emitter
cd emitter
go get -x .
go build -x .
./emitter
```

### Get License
Expand Down

0 comments on commit f25f692

Please sign in to comment.