feat: Add GitHub Actions CI and professional README

This commit is contained in:
averageencoreenjoer
2025-09-02 01:35:30 +03:00
commit b951296d9d
26 changed files with 604 additions and 0 deletions

8
db/init.sql Normal file
View File

@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS greetings (
id SERIAL PRIMARY KEY,
greeting_text TEXT NOT NULL DEFAULT 'Привет! Добро пожаловать!'
);
INSERT INTO greetings (greeting_text)
SELECT 'Привет! Добро пожаловать!'
WHERE NOT EXISTS (SELECT 1 FROM greetings WHERE id = 1);