No description
The prior Docker build re-compiled all 546 transitive Rust deps from scratch on every push because target/ is intentionally not cache-mounted (Stream C disk-pressure failures). Two changes drop the cold-build cost substantially: * cargo-chef splits dep compilation into a separate Docker layer keyed on recipe.json (derived from Cargo.toml/Cargo.lock). Source-only pushes — the common case — now reuse the cooked deps as a normal layer instead of re-running cargo for every crate. * clippy now runs in --release profile so it shares artifacts with `cargo test --release` and `cargo build --release`. Previously clippy ran in dev profile, forcing a full second compile of every dep before the release build could start. Verified `cargo clippy --release --all-targets -- -D warnings` is clean locally — no new lints surface under the release profile. |
||
|---|---|---|
| .forgejo/workflows | ||
| .github | ||
| assets | ||
| bin | ||
| config | ||
| docs | ||
| k8s | ||
| lib | ||
| lib_ml | ||
| notebooks | ||
| priv | ||
| rel | ||
| rust/prop_grid_rs | ||
| scripts | ||
| test | ||
| vendor | ||
| .credo.exs | ||
| .dockerignore | ||
| .formatter.exs | ||
| .gitignore | ||
| .tool-versions | ||
| AGENTS.md | ||
| algo.md | ||
| app.json | ||
| bugs.md | ||
| CLAUDE.md | ||
| Dockerfile | ||
| elevation.md | ||
| LICENSE | ||
| mix.exs | ||
| mix.lock | ||
| prediction.md | ||
| README.md | ||
| tail_logs.sh | ||
| updates.md | ||
Microwaveprop
To start your Phoenix server:
- Run
mix setupto install and setup dependencies - Start Phoenix endpoint with
mix phx.serveror inside IEx withiex -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
- Official website: https://www.phoenixframework.org/
- Guides: https://hexdocs.pm/phoenix/overview.html
- Docs: https://hexdocs.pm/phoenix
- Forum: https://elixirforum.com/c/phoenix-forum
- Source: https://github.com/phoenixframework/phoenix