Rename Forte to LunarFront, generalize for any small business

Rebrand from Forte (music-store-specific) to LunarFront (any small business):
- Package namespace @forte/* → @lunarfront/*
- Database forte/forte_test → lunarfront/lunarfront_test
- Docker containers, volumes, connection strings
- UI branding, localStorage keys, test emails
- All documentation and planning docs

Generalize music-specific terminology:
- instrumentDescription → itemDescription
- instrumentCount → itemCount
- instrumentType → itemCategory (on service templates)
- New migration 0027_generalize_terminology for column renames
- Seed data updated with generic examples
- RBAC descriptions updated
This commit is contained in:
Ryan Moon
2026-03-30 08:51:54 -05:00
parent 535446696c
commit 9400828f62
84 changed files with 390 additions and 820 deletions

View File

@@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile.dev
container_name: forte-api
container_name: lunarfront-api
restart: unless-stopped
ports:
- "8000:8000"
@@ -14,7 +14,7 @@ services:
- /app/packages/backend/node_modules
- /app/packages/shared/node_modules
environment:
DATABASE_URL: postgresql://forte:forte@postgres:5432/forte
DATABASE_URL: postgresql://lunarfront:lunarfront@postgres:5432/lunarfront
REDIS_URL: redis://valkey:6379
JWT_SECRET: dev-secret-do-not-use-in-production
NODE_ENV: development
@@ -28,30 +28,30 @@ services:
postgres:
image: postgres:16
container_name: forte-postgres
container_name: lunarfront-postgres
restart: unless-stopped
environment:
POSTGRES_USER: forte
POSTGRES_PASSWORD: forte
POSTGRES_DB: forte
POSTGRES_USER: lunarfront
POSTGRES_PASSWORD: lunarfront
POSTGRES_DB: lunarfront
ports:
- "5432:5432"
volumes:
- forte-pgdata:/var/lib/postgresql/data
- lunarfront-pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U forte"]
test: ["CMD-SHELL", "pg_isready -U lunarfront"]
interval: 5s
timeout: 3s
retries: 5
valkey:
image: valkey/valkey:8
container_name: forte-valkey
container_name: lunarfront-valkey
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- forte-valkey:/data
- lunarfront-valkey:/data
healthcheck:
test: ["CMD", "valkey-cli", "ping"]
interval: 5s
@@ -59,5 +59,5 @@ services:
retries: 5
volumes:
forte-pgdata:
forte-valkey:
lunarfront-pgdata:
lunarfront-valkey: