Project Init

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Yaojia Wang
2025-11-02 23:55:18 +01:00
commit 014d62bcc2
169 changed files with 28867 additions and 0 deletions

17
scripts/init-db.sql Normal file
View File

@@ -0,0 +1,17 @@
-- ColaFlow Database Initialization Script
-- This script runs automatically when PostgreSQL container starts
-- Enable required extensions
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
CREATE EXTENSION IF NOT EXISTS "pg_trgm"; -- For full-text search
-- Create initial database schema
-- Note: Actual schema will be created by EF Core migrations
-- Create test user for development
-- Password: Test123! (BCrypt hashed)
DO $$
BEGIN
-- Add any initial seed data here if needed
RAISE NOTICE 'Database initialized successfully';
END $$;