feat: Implement enhanced user profiles with social features including direct messaging, post comments, and reposts, and introduce new routing for Docs and Changelog views.

This commit is contained in:
2026-01-18 13:10:12 +01:00
parent 959b453d69
commit 62280265b4
23 changed files with 1826 additions and 458 deletions

View File

@@ -1,21 +1,24 @@
version: '3.8'
services:
server:
api:
build: ./server
ports:
- "3000:3000"
volumes:
- ./data:/app/data
- ./server:/app
environment:
- PORT=3000
env_file:
- .env
client:
build: ./client
ports:
- "8080:80"
depends_on:
- server
- api
volumes:
- ./client:/app
dev-shell:
build: