From 7353c81a4d5cd031ecce8b02efaa3a55baff6527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Tron=C3=AD=C4=8Dek?= Date: Sun, 23 Nov 2025 18:02:35 +0000 Subject: [PATCH] add auto file Co-authored-by: Ona --- .ona/automations.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .ona/automations.yaml diff --git a/.ona/automations.yaml b/.ona/automations.yaml new file mode 100644 index 0000000..7f13d01 --- /dev/null +++ b/.ona/automations.yaml @@ -0,0 +1,13 @@ +services: + blog: + name: Blog Server + description: Serves the Jekyll blog + commands: + start: | + bundle install + bundle exec jekyll serve --host 0.0.0.0 --port 4000 + ready: | + curl -s http://localhost:4000 > /dev/null && echo "Blog is ready" || exit 1 + triggeredBy: + - postEnvironmentStart + -- 2.51.2