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