feat: add devcontainer configuration and setup script

This commit is contained in:
2026-01-15 13:56:48 +00:00
parent d67a9f6f0d
commit 7f0040b668
3 changed files with 80 additions and 0 deletions

19
.devcontainer/start.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
set -e
echo "Starting devcontainer setup..."
echo "Installing dependencies..."
# install dependencies
pnpm install --frozen-lockfile
cargo install sea-orm-cli
echo "building agent image..."
# build agent image
cd apps/agent
just build-docker
cd -
echo "Agent image built."
echo "Devcontainer setup complete."