- Cargo workspace with hiy-server (axum 0.7 + sqlx SQLite + tokio) - SQLite schema: apps, deploys, env_vars (inline migrations, no daemon) - Background build worker: sequential queue, streams stdout/stderr to DB - REST API: CRUD for apps, deploys, env vars; GitHub webhook with HMAC-SHA256 - SSE endpoint for live build log streaming - Monospace HTMX-free dashboard: app list + per-app detail, log viewer, env editor - builder/build.sh: clone/pull → detect strategy (Dockerfile/buildpack/static) → docker build → swap container → update Caddy via admin API → prune images - infra/docker-compose.yml + Dockerfile.server for local dev (no Pi needed) - proxy/Caddyfile: auto-HTTPS off for local, comment removed for production - .env.example Compiles clean (zero warnings). Run locally: cp .env.example .env && cargo run --bin hiy-server https://claude.ai/code/session_01FKCW3FDjNFj6jve4niMFXH
21 lines
1.1 KiB
Text
21 lines
1.1 KiB
Text
cargo:rerun-if-changed=build.rs
|
|
cargo:rerun-if-changed=Cargo.toml
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_simd_x86_avx12_1_89_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.89.0"))
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_core_error_1_81_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.81.0"))
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_diagnostic_on_unimplemented_1_78_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.78.0"))
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_generic_bounds_in_const_fn_1_61_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.61.0"))
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_target_has_atomics_1_60_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.60.0"))
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_1_59_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.59.0"))
|
|
cargo:rustc-check-cfg=cfg(no_zerocopy_panic_in_const_and_vec_try_reserve_1_57_0)
|
|
cargo:rustc-check-cfg=cfg(rust, values("1.57.0"))
|
|
cargo:rustc-check-cfg=cfg(doc_cfg)
|
|
cargo:rustc-check-cfg=cfg(kani)
|
|
cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS)
|
|
cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_DEV_MODE)
|
|
cargo:rustc-check-cfg=cfg(coverage_nightly)
|