mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:01:08 +02:00
- Create NestJS backend on port 3020 with 4 modules (space, document, ai, token) - Add Drizzle schema with 5 tables (spaces, documents, token_transactions, model_prices, user_tokens) - Rewrite web services (spaces, documents, tokens, ai) to use shared API client instead of Supabase - Move AI API keys server-side (Azure OpenAI, Google Gemini) - Add seed script for model prices (gpt-4.1, gemini-pro, gemini-flash) - Add 70 unit tests across 4 test suites (space, document, token, ai services) - Add monorepo integration (setup-databases.sh, generate-env.mjs, docker init-db, root scripts) - Remove @supabase/supabase-js dependency and delete supabase.ts from web app - Update CLAUDE.md with full API documentation Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
39 lines
1.7 KiB
SQL
39 lines
1.7 KiB
SQL
-- Create databases for all services
|
|
-- This script runs on first container initialization
|
|
|
|
-- Core databases
|
|
CREATE DATABASE IF NOT EXISTS chat;
|
|
CREATE DATABASE IF NOT EXISTS zitare;
|
|
CREATE DATABASE IF NOT EXISTS contacts;
|
|
CREATE DATABASE IF NOT EXISTS calendar;
|
|
CREATE DATABASE IF NOT EXISTS clock;
|
|
CREATE DATABASE IF NOT EXISTS todo;
|
|
CREATE DATABASE IF NOT EXISTS manadeck;
|
|
CREATE DATABASE IF NOT EXISTS storage;
|
|
CREATE DATABASE IF NOT EXISTS mail;
|
|
CREATE DATABASE IF NOT EXISTS moodlit;
|
|
CREATE DATABASE IF NOT EXISTS finance;
|
|
CREATE DATABASE IF NOT EXISTS inventory;
|
|
CREATE DATABASE IF NOT EXISTS techbase;
|
|
CREATE DATABASE IF NOT EXISTS voxel_lava;
|
|
CREATE DATABASE IF NOT EXISTS figgos;
|
|
CREATE DATABASE IF NOT EXISTS context;
|
|
|
|
-- Grant all privileges to the default user
|
|
GRANT ALL PRIVILEGES ON DATABASE chat TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE zitare TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE contacts TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE calendar TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE clock TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE todo TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE manadeck TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE storage TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE mail TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE moodlit TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE finance TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE inventory TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE techbase TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE voxel_lava TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE figgos TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE context TO manacore;
|
|
GRANT ALL PRIVILEGES ON DATABASE manacore TO manacore;
|