feat: project scaffold with SSH server and placeholder TUI

Sets up Go module, Wish/BubbleTea SSH server on port 2222, placeholder
TUI model showing "Welcome to Catacombs!", Dockerfile, and docker-compose.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-23 23:41:45 +09:00
parent 5772ca8b3f
commit d36e364491
7 changed files with 245 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
catacombs:
build: .
ports:
- "2222:2222"
volumes:
- catacombs-data:/app/data
restart: unless-stopped
volumes:
catacombs-data: