To start development:
- Start a postgres server
- for example with podman:
podman run --name postgres -p 5432:5432 --rm -e POSTGRES_HOST_AUTH_METHOD=trust postgres
- for example with podman:
- Run
mix setupto install and setup dependencies - Run
mix ecto.devto setup the testing database with sample data - Start Phoenix endpoint with
mix phx.serveror inside IEx withiex -S mix phx.server
Now you can visit localhost:4000 from your browser.