Files
xiaoxia-saas/.env.example
T
Xiaoxia AI b5a62ee9a3 feat: initial SaaS scaffold
- domain: User, Workspace, Project, AssetLibrary, Asset, IngestJob
- ports: repository interfaces
- application: use cases
- adapters: in-memory
- API: FastAPI 5 routes
- worker: Celery ingest_asset
- tests: 4 passing
2026-06-15 15:17:40 +08:00

12 lines
335 B
Bash

# Environment example
APP_ENV=development
APP_NAME=xiaoxia-saas
API_HOST=0.0.0.0
API_PORT=8000
WEB_PORT=3000
POSTGRES_URL=postgresql+psycopg://postgres:postgres@localhost:5432/xiaoxia_saas
REDIS_URL=redis://localhost:6379/0
OBJECT_STORAGE_PROVIDER=minio
OBJECT_STORAGE_ENDPOINT=http://localhost:9000
OBJECT_STORAGE_BUCKET=xiaoxia-saas