From 9af3db8a9f9db59c700d06fb1ae710bd0036b997 Mon Sep 17 00:00:00 2001 From: Meysam Hadeli <35596795+meysamhadeli@users.noreply.github.com> Date: Thu, 5 Jan 2023 00:03:27 +0330 Subject: [PATCH] Update .gitpod.yml --- .gitpod.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index f8d40f6..53e3acf 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,21 +1,27 @@ +# https://github.com/gitpod-samples/template-dotnet-core-cli-csharp +# https://www.gitpod.io/docs/introduction/languages/dotnet +# https://github.com/gitpod-samples/template-docker-compose +# https://www.gitpod.io/docs/references/gitpod-yml +# https://www.gitpod.io/docs/configure +# https://www.gitpod.io/docs/configure/workspaces/ports + image: file: .gitpod.Dockerfile +# https://www.gitpod.io/docs/configure/workspaces/tasks#execution-order +# https://www.gitpod.io/docs/configure/projects/prebuilds tasks: - - name: Start containers + - name: Init Docker-Compose init: | docker-compose pull - - command: | - docker-compose -f ./deployments/docker-compose/infrastracture.yaml up -d + docker-compose -f ./deployments/docker-compose/docker-compose.infrastructure.yaml up -d - name: Restore & Build init: | - dotnet dev-certs https + dotnet dev-certs https dotnet restore dotnet build - - name: Run - command: dotnet run - + vscode: extensions: - - muhammad-sammy.csharp - ms-azuretools.vscode-docker + - muhammad-sammy.csharp