How to run poxa in local
guru260 opened this issue · 1 comments
guru260 commented
I have installed poxa using this instruction After that I have cloned poxa.
git clone https://github.com/edgurgel/poxa.git
mix deps.get
mix compile
How to run poxa? From the docker file I thought it would be _build/prod/rel/poxa start
But in my local I can not find such path. I have like _build/dev
I can not rel or poxa directory. How to run poxa in my local machine.
edgurgel commented
Hey @guru260 , you need to call mix release
to generate a release: https://github.com/edgurgel/poxa/blob/master/Dockerfile#L24
If you want to run the development version without a release you can run iex -S mix
which will open a console with the app open.