feat: add LinkResult, Pagination, and StatsCards components; implement server actions for link management and global stats retrieval

This commit is contained in:
Puechberty Arthur
2026-03-30 19:28:58 +02:00
parent 4ede5021b1
commit f95587fc7a
46 changed files with 4224 additions and 177 deletions
+19
View File
@@ -0,0 +1,19 @@
services:
reducelink:
image: node:20-alpine
container_name: reducelink
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
ports:
- "3000:3000"
environment:
- NODE_ENV=development
- DATABASE_URL=file:./prisma/dev.db
- NEXT_PUBLIC_BASE_URL=http://localhost:3000
command: sh -c "npm install && npx prisma generate && npx prisma migrate dev --name init && npm run dev"
restart: unless-stopped
volumes:
node_modules: