poa-netstats-agent/README.md

36 lines
600 B
Markdown

# POAAgent
**TODO: Add description**
## Documentation
In order to create the documentation
```
mix docs
```
## Run
POAAgent is an Elixir application, in order to run it first we need to fetch the dependencies and compile it.
```
mix deps.get
mix deps.compile
mix compile
```
## Run Tests
In order to run the tests we have to run the command
```
mix test
```
`POAAgent` comes also with a code analysis tool [Credo](https://github.com/rrrene/credo) and a types checker tool [Dialyxir](https://github.com/jeremyjh/dialyxir). In order to run them we have to run
```
mix credo
mix dialyzer
```