Development documentation with instructions how to setup the project for local development.
- Docker
# screen 1
$ docker-compose up
# screen 2
$ docker-compose exec waffle_ecto sh
$ > mix deps.get
$ mix test
# to run linter
$ mix credo --strict
# to generate documentation
$ MIX_ENV=dev mix docs
# to publish package
$ MIX_ENV=dev mix hex.publish
# to publish only documentation
$ MIX_ENV=dev mix hex.publish docs