From bb8fdf33cffcdf9580bb095d112cd51e26397459 Mon Sep 17 00:00:00 2001 From: Eric Gullickson <16152721+ericgullickson@users.noreply.github.com> Date: Sun, 11 Jan 2026 18:13:58 -0600 Subject: [PATCH] chore: update docs --- CLAUDE.md | 6 +++--- README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index af27ef6..81cb2af 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -25,11 +25,11 @@ Single-tenant vehicle management application with 5-container architecture (Trae | `.gitea/` | Gitea workflows and templates | CI/CD, issue templates | | `ansible/` | Ansible deployment playbooks | Server provisioning | -## Build +## Build for staging and production. NOT FOR DEVELOPMENT ```bash -make setup # First-time setup (builds containers, runs migrations) -make rebuild # Rebuild containers after changes +make setup # First-time setup +make rebuild # Rebuild containers ``` ## Test diff --git a/README.md b/README.md index 6d92c86..68957f2 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ Simplified 5-container architecture with integrated platform feature. - Docker-first, production-only: All testing and validation in containers. - See `CLAUDE.md` for development partnership guidelines. -## Quick Start (containers) +## Staging and Production Commands. NOT FOR DEVELOPMENT (containers) ```bash make setup # build + start + migrate (uses mvp-* containers) make start # start 5 services -make rebuild # rebuild on changes +make rebuild # make logs # tail all logs make migrate # run DB migrations ```