testgo5/.claude/guides/local/setup.md
jordan 3dcae1d801
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/manual/woodpecker Pipeline was successful
Initialize project from skeleton template
2026-02-01 21:01:17 +00:00

38 lines
656 B
Markdown

# Local Development Setup
## Prerequisites
- Go 1.23+
- Node.js 20+ (for frontend apps)
- Docker and Docker Compose
- Make
## Getting Started
1. **Start infrastructure services:**
```bash
docker-compose up -d
```
2. **Install dependencies:**
```bash
./scripts/install.sh
```
3. **Start development:**
```bash
./scripts/dev.sh
```
## Environment Variables
Copy `.env.example` files in each component to `.env` and configure as needed.
## Common Tasks
| Task | Command |
|------|---------|
| Run all tests | `./scripts/quality.sh` |
| List components | `./scripts/discover.sh` |
| Lint code | `golangci-lint run ./...` |