Remove unused script tag from Layout component, add docker-compose and pnpm workspace configuration

This commit is contained in:
2025-08-30 13:42:01 +02:00
parent 54e4bc705c
commit 02549ae97a
4 changed files with 19 additions and 28 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
app:
image: node:22
working_dir: /app
volumes:
- .:/app
ports:
- "6756:6756"
command: >
sh -c "
npm i -g pnpm &&
pnpm install &&
pnpm build &&
PORT=6756 pnpm start
"