Initial commit: Luna portfolio website

This commit is contained in:
2026-03-23 20:19:05 +01:00
commit 4125cd9d65
24 changed files with 3712 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
app:
image: node:24
working_dir: /app
volumes:
- .:/app
restart: always
ports:
- "44432:3000"
command: >
sh -c "
npm i -g pnpm &&
pnpm install &&
pnpm build &&
pnpm start
"