Vibe coded prototype.

This commit is contained in:
alexiondev
2026-04-04 18:53:07 +00:00
commit a98f2eee07
6 changed files with 963 additions and 0 deletions

8
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM mcr.microsoft.com/devcontainers/rust:1-bookworm
# [Optional] Install additional packages
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends libssl-dev pkg-config
# Ensure the cargo target directory is owned by the vscode user
RUN mkdir -p /workspaces/target && chown vscode:vscode /workspaces/target