claude-plugins/plugins/save-doc/examples/guide.md
Cal Corum 51fe634ff5 refactor: convert 5 more skills to commands, update transcriber defaults
Convert backlog, project-plan, save-doc, youtube-transcriber, and
z-image from skills/ to commands/ so they appear as user-invocable
slash commands with plugin name prefixes.

Update youtube-transcriber: switch default model from gpt-4o-transcribe
to gpt-4o-mini-transcribe (OpenAI's current recommendation, half cost)
and fix cost estimates that were 4-7x too high.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 14:41:37 -05:00

1.2 KiB

title description type domain tags
Paper Dynasty Dev Server Guide Setup guide for Paper Dynasty local development server with Docker Compose, database seeding, and hot-reload configuration. guide development
paper-dynasty
docker
development
setup

Paper Dynasty Dev Server Guide

Prerequisites

  • Docker with Compose v2
  • Git access to cal/paper-dynasty and cal/paper-dynasty-database
  • .env file from the project wiki or another dev

Quick Start

cd /mnt/NV2/Development/paper-dynasty
cp .env.example .env        # then fill in DB creds and Discord token
docker compose -f docker-compose.dev.yml up -d

Services

Service Port Purpose
api 8080 FastAPI backend (hot-reload enabled)
db 5432 PostgreSQL 16
bot Discord bot (connects to dev guild)

Database Seeding

docker compose exec api python -m scripts.seed_dev_data

This creates 5 test players with pre-built collections for testing trades and gauntlet.

Common Issues

  • Bot won't connect: Check DISCORD_TOKEN in .env points to the dev bot, not prod
  • DB connection refused: Wait 10s for postgres healthcheck, or docker compose restart db