proxMon/server
Carsten 116f1ada14 fix(server): only mark hosts offline when endpoint is serving
Application.start ran mark_all_offline unconditionally, which meant
every "mix run"/"mix ecto.migrate" invocation would flip all
connected hosts to offline. Gate the call on Phoenix.Endpoint.server?
so non-serving boots don't disturb live state.
2026-04-21 22:15:35 +02:00
..
assets feat(server): phoenix 1.7 scaffold with sqlite + liveview 2026-04-21 22:00:43 +02:00
config feat(server): host schema, context, auth, status transitions 2026-04-21 22:02:24 +02:00
lib fix(server): only mark hosts offline when endpoint is serving 2026-04-21 22:15:35 +02:00
priv feat(server): host schema, context, auth, status transitions 2026-04-21 22:02:24 +02:00
test feat(server): host channel with token auth and metric events 2026-04-21 22:04:31 +02:00
.formatter.exs feat(server): phoenix 1.7 scaffold with sqlite + liveview 2026-04-21 22:00:43 +02:00
.gitignore feat(server): phoenix 1.7 scaffold with sqlite + liveview 2026-04-21 22:00:43 +02:00
mix.exs feat(server): add bcrypt_elixir for token hashing 2026-04-21 22:01:09 +02:00
mix.lock feat(server): add bcrypt_elixir for token hashing 2026-04-21 22:01:09 +02:00
README.md feat(server): phoenix 1.7 scaffold with sqlite + liveview 2026-04-21 22:00:43 +02:00

Server

To start your Phoenix server:

  • Run mix setup to install and setup dependencies
  • Start Phoenix endpoint with mix phx.server or inside IEx with iex -S mix phx.server

Now you can visit localhost:4000 from your browser.

Ready to run in production? Please check our deployment guides.

Learn more