sqlant 0.5.0

Generate PlantUML/Mermaid ER diagram textual description from SQL connection string
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Builder
FROM rust:1.83 AS builder
COPY . /app
WORKDIR /app
RUN apt update && apt install musl-tools -y

RUN rustup target add x86_64-unknown-linux-musl
RUN cargo build --release --target x86_64-unknown-linux-musl

# Runner
FROM alpine:3.21 
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/sqlant /app/sqlant
WORKDIR /app

ENTRYPOINT ["/app/sqlant"]
CMD ["--help"]