Initial commit: Ebook Translation System with Docker setup

This commit is contained in:
richardtekula
2025-11-11 16:01:34 +01:00
commit e1b95c613d
43 changed files with 13922 additions and 0 deletions

21
init-scripts/01-init.sql Normal file
View File

@@ -0,0 +1,21 @@
-- ========================================
-- PostgreSQL Initialization Script
-- Ebook Translation System
-- ========================================
-- Tento skript sa automaticky spustí pri prvom štarte PostgreSQL kontajnera
-- ========================================
-- Nastavenie timezone
SET timezone = 'Europe/Bratislava';
-- Vytvorenie extensions (ak budú potrebné v budúcnosti)
-- CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- CREATE EXTENSION IF NOT EXISTS "pg_trgm";
-- Info výpis
DO $$
BEGIN
RAISE NOTICE 'Database initialized successfully!';
RAISE NOTICE 'Timezone: Europe/Bratislava';
RAISE NOTICE 'Ready for application connection...';
END $$;