Add the yaak.run playground API (#681)

This commit is contained in:
Gregory Schier
2026-09-15 13:55:36 -07:00
committed by GitHub
parent ae518dfb4c
commit cef569ee15
17 changed files with 1746 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# syntax=docker/dockerfile:1
# The playground API behind yaak.run. See crates-server/yaak-playground/README.md.
FROM rust:1-bookworm AS build
WORKDIR /app
COPY . .
RUN cargo build --release -p yaak-playground
FROM debian:bookworm-slim
COPY --from=build /app/target/release/yaak-playground /usr/local/bin/yaak-playground
ENV HOST=0.0.0.0
ENV PORT=8080
EXPOSE 8080
USER nobody
CMD ["yaak-playground"]