From 68f768d68763c2c548c9971d5f90a6dfebbb621c Mon Sep 17 00:00:00 2001 From: Meysam Hadeli Date: Thu, 9 Oct 2025 17:18:05 +0330 Subject: [PATCH] chore: remove additional files --- .gitpod.Dockerfile | 1 - .gitpod.yml | 37 ------------------------------------- 2 files changed, 38 deletions(-) delete mode 100644 .gitpod.Dockerfile delete mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index 9c1e96b..0000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM gitpod/workspace-dotnet:latest diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 359604b..0000000 --- a/.gitpod.yml +++ /dev/null @@ -1,37 +0,0 @@ -# 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 - -vscode: - extensions: - - muhammad-sammy.csharp - - editorconfig.editorconfig - - vivaxy.vscode-conventional-commits - - humao.rest-client - - ms-azuretools.vscode-docker - - donjayamanne.githistory - - pkief.material-icon-theme - - emmanuelbeziat.vscode-great-icons - -# https://www.gitpod.io/docs/configure/workspaces/tasks#execution-order -# https://www.gitpod.io/docs/configure/projects/prebuilds -tasks: - - name: Init Docker-Compose - # https://www.gitpod.io/docs/configure/projects/prebuilds - # We load docker on pre-build for increasing speed - init: | - docker-compose pull - docker-compose -f ./deployments/docker-compose/infrastracture.yaml up -d - - name: Setup kubectl - command: bash $GITPOD_REPO_ROOT/scripts/setup_kubectl_gitpod.sh - - name: Restore & Build - init: | - dotnet dev-certs https - dotnet restore - dotnet build