claude-configs/skills/save-doc/examples/guide.md
Cal Corum b464a10964 Sync config: add save-doc skill, update agents/skills/plugins, clean sessions
- Add skills/save-doc/ skill
- Add sessions/2121928.json
- Delete cognitive-memory skill, memory-saver agent, save-memories command
- Update CLAUDE.md, pr-reviewer, issue-worker agents
- Update mcp-manager, create-scheduled-task, paper-dynasty skills
- Update plugins (blocklist, installed, known_marketplaces, marketplaces)
- Remove old session files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-18 02:00:54 -05:00

44 lines
1.2 KiB
Markdown

---
title: "Paper Dynasty Dev Server Guide"
description: "Setup guide for Paper Dynasty local development server with Docker Compose, database seeding, and hot-reload configuration."
type: guide
domain: development
tags: [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
```bash
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
```bash
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`