From 4e9cac7b4478fd9b4b00b2a59ede5a6cd34d5315 Mon Sep 17 00:00:00 2001 From: Marek Lesko Date: Sun, 19 Oct 2025 17:57:06 +0000 Subject: [PATCH] refactor: remove unused example service from automations.yaml --- .gitpod/automations.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.gitpod/automations.yaml b/.gitpod/automations.yaml index 900f389..6446ee2 100755 --- a/.gitpod/automations.yaml +++ b/.gitpod/automations.yaml @@ -7,31 +7,3 @@ tasks: - manual # - postEnvironmentStart # - postDevcontainerStart - -services: - example-service: - name: Example Service - description: Example service simulating a backend - commands: - start: | - echo "Starting backend service..." - touch /tmp/backend.started - while true; do - sleep 1 - date - done - ready: | - if [ -f /tmp/backend.started ]; then - echo "Backend service is ready" - exit 0 - else - echo "Backend service is not ready" - exit 1 - fi - # stop: | - # echo "Stopping backend service..." - # rm /tmp/backend.started - # pkill backend - triggeredBy: - - postEnvironmentStart - # - postDevcontainerStart