Skip to content

Commit 82d368a

Browse files
removed docker-in-docker dependency
1 parent 4a30d6a commit 82d368a

File tree

2 files changed

+1
-28
lines changed

2 files changed

+1
-28
lines changed

.vscode/tasks.json

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -70,26 +70,6 @@
7070
"command": "npm run setup",
7171
"problemMatcher": []
7272
},
73-
{
74-
"label": "deploy:prod",
75-
"type": "shell",
76-
"command": "npm run deploy:prod",
77-
"isBackground": true,
78-
"problemMatcher": []
79-
},
80-
{
81-
"label": "deploy:prod:down",
82-
"type": "shell",
83-
"command": "npm run deploy:prod:down",
84-
"problemMatcher": []
85-
},
86-
{
87-
"label": "deploy:prod:logs",
88-
"type": "shell",
89-
"command": "npm run deploy:prod:logs",
90-
"isBackground": true,
91-
"problemMatcher": []
92-
},
9373
{
9474
"label": "db:setup",
9575
"type": "shell",

package.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,8 @@
99
"test": "jest --passWithNoTests",
1010
"test:watch": "jest --watch",
1111
"test:e2e": "playwright test",
12-
"test:e2e:headed": "playwright test --headed",
13-
"test:e2e:debug": "node scripts/test-e2e-with-server.js",
14-
"test:docker": "docker compose -f docker-compose.test.yaml -p taskflow-tests up --build --abort-on-container-exit && docker compose -f docker-compose.test.yaml -p taskflow-tests down -v",
15-
"test:docker:logs": "docker compose -f docker-compose.test.yaml -p taskflow-tests up --build",
1612
"lint": "eslint 'app/**/*.{ts,tsx,js,jsx}' 'components/**/*.{ts,tsx,js,jsx}' 'tests/**/*.{ts,tsx,js,jsx}' --ignore-pattern 'app/generated/**' --ignore-pattern 'generated/**' --max-warnings=0",
1713
"setup": "npm i && npm run db:setup && npx playwright install chromium",
18-
"deploy:prod": "docker compose -f docker-compose.yaml up --build -d",
19-
"deploy:prod:down": "docker compose -f docker-compose.yaml down",
20-
"deploy:prod:logs": "docker compose -f docker-compose.yaml logs -f",
2114
"db:create": "node prisma/create-db.js",
2215
"db:setup": "npm run db:create && npx prisma db push && npm run db:reset",
2316
"db:clear": "node prisma/clear.js",
@@ -65,4 +58,4 @@
6558
"ts-jest": "^29",
6659
"typescript": "^5"
6760
}
68-
}
61+
}

0 commit comments

Comments
 (0)