Initial commit: Meshkee CMS API

NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
This commit is contained in:
Ali Reza
2026-07-21 17:52:36 +03:30
commit bb59d5e9ba
254 changed files with 37031 additions and 0 deletions
@@ -0,0 +1,7 @@
-- Remove redundant name_en (use name for English/default name)
UPDATE businesses
SET name = COALESCE(name, name_en)
WHERE name IS NULL AND name_en IS NOT NULL;
ALTER TABLE businesses DROP COLUMN IF EXISTS name_en;