Skip to content

Commit

Permalink
Merge branch 'lebihae/devonboarding' into 'main'
Browse files Browse the repository at this point in the history
chore(vscode): make "Setup environment" VSCode task actually work

See merge request churros/churros!264
  • Loading branch information
ewen-lbh committed Oct 24, 2024
2 parents dbd2a05 + 3099114 commit 18c3843
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
"type": "shell",
"command": "yarn reset"
},
{
"label": "Generate Prisma Client",
"type": "shell",
"command": "yarn prisma generate"
},
{
"label": "Install dependencies",
"type": "shell",
Expand All @@ -34,9 +39,22 @@
"type": "shell",
"command": "yarn build"
},
{
"label": "Create .env file",
"type": "shell",
"command": "cp .env.example .env && yarn cp-env"
},
{
"label": "Setup environment",
"dependsOn": ["Install dependencies", "Reset database", "Build", "Pre-dev", "Develop"],
"dependsOn": [
"Install dependencies",
"Create .env file",
"Generate Prisma Client",
"Build",
"Reset database",
"Pre-dev",
"Develop"
],
"dependsOrder": "sequence"
},
{
Expand Down

0 comments on commit 18c3843

Please sign in to comment.