upload to github

This commit is contained in:
jrosh 2025-05-29 13:41:38 +02:00
commit 92cc81e813
No known key found for this signature in database
GPG key ID: A4D68DCA6C9CCD2D
51 changed files with 8041 additions and 0 deletions

18
docker-compose.yaml Normal file
View file

@ -0,0 +1,18 @@
version: '3.8'
services:
dev:
image: node:alpine
working_dir: /app
volumes:
- ./:/app
ports:
- "${VITE_PORT}:${VITE_PORT}"
command: sh -c "npm install && npm run dev"
build:
image: node:alpine
working_dir: /app
volumes:
- ./:/app
command: sh -c "rm -rf dist/ && npm install && npm run build-only"