mix deps.get
mix ecto.create && mix ecto.migrate
or mix ecto.setup
to create, migrate and seed.cd assets && npm install
mix phx.server
or iex -S mix phx.server
if you want to run within a REPL.#.env
export BASIC_AUTH_USERNAME=(replace with your login)
export BASIC_AUTH_PASSWORD=(replace with your password)
Now you can visit localhost:4000
from your browser.
mix credo
to see a list of code analysis suggestions via Credo. NOTE: We are using the defaults Credo provides.Ready to run in production? Please check our deployment guides.