mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 16:46:42 +02:00
refactor: rename planta → plants, clean up codebase
- Rename planta module to plants everywhere (routes, modules, API, branding, i18n, docker, docs, shared packages) - Fix package name collisions: @mana/credits-service, @mana/subscriptions-service (unblocks turbo) - Extract layout composables: use-ai-tier-items, use-sync-status-items, RouteTierGate (layout 1345→1015 lines) - Create shared DB pool for apps/api (lib/db.ts), migrate 5 modules - Add automations module queries.ts with useAllAutomations/useEnabledAutomations - Remove debug console.log statements from production code - Rename storage display name: Ablage → Speicher Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c6c19dbc77
commit
a91a6076cc
110 changed files with 831 additions and 707 deletions
|
|
@ -24,7 +24,7 @@ import { contextRoutes } from './modules/context/routes';
|
|||
import { pictureRoutes } from './modules/picture/routes';
|
||||
import { storageRoutes } from './modules/storage/routes';
|
||||
import { todoRoutes } from './modules/todo/routes';
|
||||
import { plantaRoutes } from './modules/planta/routes';
|
||||
import { plantsRoutes } from './modules/plants/routes';
|
||||
import { nutriphiRoutes } from './modules/nutriphi/routes';
|
||||
import { guidesRoutes } from './modules/guides/routes';
|
||||
import { moodlitRoutes } from './modules/moodlit/routes';
|
||||
|
|
@ -56,7 +56,7 @@ app.route('/api/v1/context', contextRoutes);
|
|||
app.route('/api/v1/picture', pictureRoutes);
|
||||
app.route('/api/v1/storage', storageRoutes);
|
||||
app.route('/api/v1/todo', todoRoutes);
|
||||
app.route('/api/v1/planta', plantaRoutes);
|
||||
app.route('/api/v1/plants', plantsRoutes);
|
||||
app.route('/api/v1/nutriphi', nutriphiRoutes);
|
||||
app.route('/api/v1/guides', guidesRoutes);
|
||||
app.route('/api/v1/moodlit', moodlitRoutes);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue