feat: implement SEO improvements, listing profiles, service images, and towns serviced

This commit is contained in:
2026-03-08 15:12:53 -04:00
parent 6c95a7d201
commit da22c4f19a
31 changed files with 1921 additions and 42 deletions

View File

@@ -1,15 +1,5 @@
# Development stage for Rust API
FROM rust:latest AS builder
WORKDIR /usr/src/app
COPY . .
RUN cargo install cargo-watch
RUN cargo build --release
# Runtime stage for development
FROM rust:latest
RUN cargo install cargo-watch
WORKDIR /usr/src/app
COPY --from=builder /usr/src/app/target/release/api_rust /usr/local/bin/api_rust
COPY --from=builder /usr/local/cargo/bin/cargo-watch /usr/local/bin/cargo-watch
COPY . .
EXPOSE 9552
CMD ["cargo-watch", "-x", "run"]