refractor code,

This commit is contained in:
root
2026-05-21 12:35:49 -04:00
parent e74681e810
commit f009ca10c6
158 changed files with 215801 additions and 5884 deletions
+5 -1
View File
@@ -23,6 +23,8 @@
"docker:prod:start:pgmanage": "bash scripts/docker-prod-up-pgmanage.sh",
"docker:prod:up": "docker compose -p rentaldrivego-prod --env-file .env.docker.production -f docker-compose.production.yml up --build -d",
"docker:prod:down": "docker compose -p rentaldrivego-prod --env-file .env.docker.production -f docker-compose.production.yml down",
"docker:prod:backup": "bash scripts/docker-prod-backup.sh",
"docker:prod:restore": "bash scripts/docker-prod-restore.sh",
"docker:prod:logs": "docker compose -p rentaldrivego-prod --env-file .env.docker.production -f docker-compose.production.yml logs -f",
"docker:prod:logs:api": "docker compose -p rentaldrivego-prod --env-file .env.docker.production -f docker-compose.production.yml logs -f api",
"clerk:keys": "bash scripts/setup-clerk-keys.sh",
@@ -32,7 +34,9 @@
"db:migrate": "turbo db:migrate",
"db:seed": "turbo db:seed",
"db:seed:admin": "npm run db:seed --workspace @rentaldrivego/database",
"db:studio": "cd packages/database && npx prisma studio"
"db:studio": "cd packages/database && npx prisma studio",
"test:api": "npm run test --workspace @rentaldrivego/api",
"test:api:integration": "npm run test:integration --workspace @rentaldrivego/api"
},
"devDependencies": {
"turbo": "^1.13.0",