Skip to content

Commit

Permalink
Add .vscode/tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
leojonathanoh committed Nov 9, 2023
1 parent 53b1630 commit 139d36c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Test (dev)",
"type": "shell",
"command": "docker-compose -f docker-compose.test.yml --profile dev up",
"group": "build"
},
{
"label": "Test (prod)",
"type": "shell",
"command": "docker-compose -f docker-compose.test.yml --profile prod up",
"group": "build"
},
{
"label": "Test (dns)",
"type": "shell",
"command": "docker-compose -f docker-compose.test.yml --profile dns up",
"group": "build"
},
]
}

0 comments on commit 139d36c

Please sign in to comment.