Added packageManager

This commit is contained in:
PxlLoewe
2025-05-27 17:47:40 -07:00
parent 571ddfba85
commit 2209372303
5 changed files with 10 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
"start": "tsx index.ts --transpile-only", "start": "tsx index.ts --transpile-only",
"build": "tsc" "build": "tsc"
}, },
"packageManager": "pnpm@10.11.0",
"devDependencies": { "devDependencies": {
"@repo/db": "*", "@repo/db": "*",
"@repo/typescript-config": "*", "@repo/typescript-config": "*",

View File

@@ -3,6 +3,7 @@
"version": "0.1.0", "version": "0.1.0",
"type": "module", "type": "module",
"private": true, "private": true,
"packageManager": "pnpm@10.11.0",
"scripts": { "scripts": {
"dev": "next dev --turbopack -p 3001", "dev": "next dev --turbopack -p 3001",
"build": "next build", "build": "next build",

View File

@@ -7,6 +7,7 @@
"dev": "nodemon --signal SIGINT", "dev": "nodemon --signal SIGINT",
"start": "tsx index.ts --transpile-only" "start": "tsx index.ts --transpile-only"
}, },
"packageManager": "pnpm@10.11.0",
"devDependencies": { "devDependencies": {
"@repo/db": "*", "@repo/db": "*",
"@repo/typescript-config": "*", "@repo/typescript-config": "*",
@@ -29,6 +30,5 @@
"react": "^19.0.0", "react": "^19.0.0",
"tsconfig-paths": "^4.2.0", "tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4" "tsx": "^4.19.4"
}, }
"packageManager": "pnpm@10.11.0"
} }

View File

@@ -2,6 +2,7 @@
"name": "hub", "name": "hub",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"packageManager": "pnpm@10.11.0",
"scripts": { "scripts": {
"dev": "next dev --turbopack -p 3000", "dev": "next dev --turbopack -p 3000",
"build": "next build", "build": "next build",

View File

@@ -20,6 +20,11 @@ services:
build: build:
context: . context: .
dockerfile: ./apps/hub/Dockerfile dockerfile: ./apps/hub/Dockerfile
args:
- NEXT_PUBLIC_DISPATCH_URL=$NEXT_PUBLIC_DISPATCH_URL
- NEXT_PUBLIC_HUB_URL=$NEXT_PUBLIC_HUB_URL
- NEXT_PUBLIC_LIVEKIT_URL=$NEXT_PUBLIC_LIVEKIT_URL
- NEXT_PUBLIC_HUB_SERVER_URL=$NEXT_PUBLIC_HUB_SERVER_URL
container_name: hub container_name: hub
ports: ports:
- "3000:3000" - "3000:3000"