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:
@@ -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
|
||||
Reference in New Issue
Block a user