chore: wire Carplace into dev and production stacks
Build & Deploy / Build & Push Docker Image (push) Successful in 2m55s
Test / Type Check (all packages) (push) Successful in 54s
Build & Deploy / Deploy to VPS (push) Successful in 4s
Test / API Unit Tests (push) Failing after 48s
Test / Homepage Unit Tests (push) Successful in 43s
Test / Storefront Unit Tests (push) Failing after 40s
Test / Admin Unit Tests (push) Successful in 40s
Test / Dashboard Unit Tests (push) Failing after 42s
Test / API Integration Tests (push) Successful in 1m0s

This commit is contained in:
root
2026-07-02 18:15:42 -04:00
parent ad5f5ebab7
commit 7ff2dbb139
214 changed files with 5258 additions and 5906 deletions
+5 -4
View File
@@ -17,10 +17,10 @@
"docker:dev:start:redis": "docker compose -f docker-compose.dev.yml up -d redis",
"docker:dev:start:api": "docker compose -f docker-compose.dev.yml --profile api up --build",
"docker:dev:start:homepage": "docker compose -f docker-compose.dev.yml --profile homepage up --build",
"docker:dev:start:storefront": "docker compose -f docker-compose.dev.yml --profile storefront up --build",
"docker:dev:start:carplace": "docker compose -f docker-compose.dev.yml --profile carplace up --build",
"docker:dev:start:dashboard": "docker compose -f docker-compose.dev.yml --profile dashboard up --build",
"docker:dev:start:admin": "docker compose -f docker-compose.dev.yml --profile admin up --build",
"docker:dev:start:frontends": "docker compose -f docker-compose.dev.yml --profile homepage --profile storefront --profile dashboard --profile admin up --build",
"docker:dev:start:frontends": "docker compose -f docker-compose.dev.yml --profile homepage --profile carplace --profile dashboard --profile admin up --build",
"docker:dev:start:pgmanage": "docker compose -f docker-compose.dev.yml --profile tools up --build pgmanage",
"docker:dev:start:tools": "docker compose -f docker-compose.dev.yml --profile tools up --build",
"docker:dev:start:portainer": "echo 'No development Portainer stack is configured. Use the production compose files if needed.'",
@@ -30,6 +30,7 @@
"docker:prod:start:redis": "bash scripts/docker-prod-up-redis.sh",
"docker:prod:start:api": "bash scripts/docker-prod-up-api.sh",
"docker:prod:start:homepage": "bash scripts/docker-prod-up-homepage.sh",
"docker:prod:start:carplace": "bash scripts/docker-prod-up-carplace.sh",
"docker:prod:start:storefront": "bash scripts/docker-prod-up-storefront.sh",
"docker:prod:start:dashboard": "bash scripts/docker-prod-up-dashboard.sh",
"docker:prod:start:admin": "bash scripts/docker-prod-up-admin.sh",
@@ -60,8 +61,8 @@
"test:dashboard": "npm run test --workspace @rentaldrivego/dashboard",
"test:admin": "npm run test --workspace @rentaldrivego/admin",
"test:homepage": "npm run test --workspace @rentaldrivego/homepage",
"test:storefront": "npm run test --workspace @rentaldrivego/storefront",
"test:frontends": "npm run test:dashboard && npm run test:admin && npm run test:homepage && npm run test:storefront",
"test:carplace": "npm run test --workspace @rentaldrivego/carplace",
"test:frontends": "npm run test:dashboard && npm run test:admin && npm run test:homepage && npm run test:carplace",
"security:static": "node scripts/security-static-check.mjs",
"security:scan": "npm run security:static && npm audit --production"
},