feat: add settings page for user display name and implement local storage hook

feat: create SocketContext for managing socket connections

feat: implement useLocalStorage hook for persistent state management

feat: set up SQLite database with room management functions

feat: add utility functions for generating room IDs and formatting dates
This commit is contained in:
Puechberty Arthur
2026-03-30 23:13:20 +02:00
parent a0df2e5437
commit 739fa54719
17 changed files with 2752 additions and 103 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
visio:
image: node:20-alpine
container_name: visio-app
working_dir: /app
volumes:
- ./:/app
- /app/node_modules
ports:
- "3010:3000"
environment:
- PORT=3000
command: sh -c "npm install && npm run build && npm start"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s