unfied style

This commit is contained in:
root
2026-05-23 04:35:47 -04:00
parent fd10d0db6a
commit 07fba16ff2
57 changed files with 565 additions and 263 deletions
+18 -3
View File
@@ -110,7 +110,12 @@ services:
- api
env_file:
- .env.docker.dev
command: ["npm", "run", "dev", "--workspace", "@rentaldrivego/marketplace"]
command:
[
"sh",
"-c",
"npm run build --workspace @rentaldrivego/types && cd /app/apps/marketplace && exec env PATH=/app/docker/scripts:$PATH /app/node_modules/.bin/next dev -H 0.0.0.0 -p 3000",
]
ports:
- "3000:3000"
volumes:
@@ -127,7 +132,12 @@ services:
- api
env_file:
- .env.docker.dev
command: ["npm", "run", "dev", "--workspace", "@rentaldrivego/dashboard"]
command:
[
"sh",
"-c",
"npm run build --workspace @rentaldrivego/types && cd /app/apps/dashboard && exec env PATH=/app/docker/scripts:$PATH /app/node_modules/.bin/next dev -H 0.0.0.0 -p 3001",
]
ports:
- "3001:3001"
volumes:
@@ -144,7 +154,12 @@ services:
- api
env_file:
- .env.docker.dev
command: ["npm", "run", "dev", "--workspace", "@rentaldrivego/admin"]
command:
[
"sh",
"-c",
"npm run build --workspace @rentaldrivego/types && cd /app/apps/admin && exec env PATH=/app/docker/scripts:$PATH /app/node_modules/.bin/next dev -H 0.0.0.0 -p 3002",
]
ports:
- "3002:3002"
volumes: