Skip to content

Instantly share code, notes, and snippets.

View LeoVS09's full-sized avatar

Vladislav Goncharov LeoVS09

  • Gdansk, Poland
View GitHub Profile
@LeoVS09
LeoVS09 / README.md
Created March 6, 2026 21:35
Dev Container for Claude Code

Development

Claude Code Dev Container

This project uses Dev Containers, which included in VS Code, Cursor, Antigravity. You can use bottom left corner button to open Dev Container view, and then click on "Reopen in Container" button to open the project in a container.

Or you can use cli. In order to activate it, run following in your IDE:

Press cmd/ctrl+shift+p or F1 and select the Dev Containers: Install devcontainer CLI command to install it.

@LeoVS09
LeoVS09 / CLAUDE.md
Created March 6, 2026 21:33
Agent Harness for node-typescript projects

Development Commands

# Install dependencies
npm install

# Development with watch mode
npm run dev
@LeoVS09
LeoVS09 / docker-sandbox.sh
Last active March 4, 2026 06:10
Launch Docker sandbox for claude code
#!/usr/bin/env bash
set -euo pipefail
# Host repo directory = current directory
REPO_DIR="$(pwd)"
CONTAINER_DIR="/workspace"
IMAGE="node:24"
# Optional: pass a command to run inside the container.
# If no command is provided, start an interactive shell.