# ============================================================================
# SeedProject base — cloneable Astro + PHP foundation
# Tracked: engine code (app/src, api framework).
# Ignored: secrets, dependencies, build output, and per-site runtime state.
# ============================================================================

# --- secrets (NEVER commit) ---
**/.env
api/config.php
api/system/.installed

# --- dependencies (installed per site via scripts/new-site.sh) ---
node_modules/
api/vendor/

# --- build output (regenerable) ---
# NOTE: anchored to the repo root — app/public/ (theme static assets) and
# api/public/ (framework front controller) are source, not build output.
app/dist/
app/.astro/
/public/
/public-preview/

# --- logs ---
*.log
