chore add core rust project files and diesel migrations

Track required workspace crates, scripts, and historical diesel migrations so the repository contains the complete runnable backend baseline.

Made-with: Cursor
This commit is contained in:
2026-04-23 17:20:01 +08:00
parent c843fecbce
commit 44c320d8fa
392 changed files with 11786 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
version: "3.8"
services:
htymusic:
image: ghcr.io/alchemy-studio/htymusic
container_name: htymusic
tty: true
ports:
- "8010:8010"
environment:
WS_PORT: 3000
UC_PORT: 3001
depends_on:
- htyws
- htyuc
htyws:
image: ghcr.io/alchemy-studio/htyws
container_name: htyws
tty: true
ports:
- "3000:3000"
environment:
ROCKET_PORT: 3000
DATABASE_URL: postgres://htyws@mydb/htyws
htyuc:
image: ghcr.io/alchemy-studio/htyuc
container_name: htyuc
tty: true
ports:
- "3001:3001"
environment:
ROCKET_PORT: 3001
DATABASE_URL: postgres://htyuc@mydb/htyuc