mirror of
https://github.com/techforces-ai/Cial.git
synced 2026-05-15 20:14:11 +00:00
Bypasses orchestrator/router/multi-tenant entirely. Spawns five native processes mirroring the layout inside a production tenant container: edge :8080 → core-back :4000, core-front :4001, platform-back :3001, platform-front :3000. Edits to .ts/.tsx anywhere under cial-core or cial-platform reload the right process automatically. Sqlite DB lives at ./.dev-tenant/core.db (gitignored). Mailer in `log` mode prints magic links to stdout — click once, cookie persists across restarts. Existing pnpm local:up (Docker compose + dynamic tenant orchestration) is untouched and remains the production-faithful path. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
506 B
Text
48 lines
506 B
Text
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Build outputs
|
|
dist
|
|
build
|
|
.next
|
|
out
|
|
*.tsbuildinfo
|
|
|
|
# Turbo
|
|
.turbo
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS / editors
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.idea
|
|
|
|
# Test
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Misc
|
|
*.local
|
|
.cache
|
|
|
|
# Smoke harness scratch dir
|
|
.smoke/
|
|
|
|
# Dev tenant state (sqlite + Better-Auth db from `pnpm dev:tenant`)
|
|
.dev-tenant/
|