Skip to content

Commit

Permalink
fix db-up / db-nuke command (calcom#917)
Browse files Browse the repository at this point in the history
`db-nuke` wasn't properly deleting the docker container
  • Loading branch information
KATT authored Oct 12, 2021
1 parent cfd7017 commit c94231f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build",
"dev": "next dev",
"db-up": "docker compose up -d",
"db-up": "docker-compose up -d",
"db-migrate": "yarn prisma migrate dev",
"db-seed": "yarn ts-node scripts/seed.ts",
"db-nuke": "docker compose down --volumes --remove-orphans",
"db-nuke": "docker-compose down --volumes --remove-orphans",
"dx": "cross-env BASE_URL=http://localhost:3000 JWT_SECRET=secret DATABASE_URL=postgresql://postgres:@localhost:5450/calendso run-s db-up db-migrate db-seed dev",
"test": "jest",
"test-playwright": "jest --maxWorkers=2 --config jest.playwright.config.js && nyc report --reporter=lcov",
Expand Down

0 comments on commit c94231f

Please sign in to comment.