diff --git a/docs/dagger/dagger-hackathon/README.md b/docs/dagger/dagger-hackathon/README.md index 2f10e0f4..44d37504 100644 --- a/docs/dagger/dagger-hackathon/README.md +++ b/docs/dagger/dagger-hackathon/README.md @@ -2,6 +2,22 @@ Welcome to the Dagger hackathon hosted by the [CNCF](https://community.cncf.io/cloud-native-calgary/) and [Code to Cloud](https://www.codetocloud.io/)! By the end of this hack, you will have a good understanding of how to use Dagger and the various use cases it can help support. +👀 Here’s the end-to-end flow: + +![image](./assets/hack-overview.jpeg) + +1️⃣ Dev makes a change 🛠️ + +2️⃣ Pushes it to GitHub & opens a PR 🔁 + +3️⃣ GitHub Actions pipeline is triggered ⚙️ + +4️⃣ Unit tests run… and fail 🚫 + +5️⃣ Dagger agent inspects the issue using smart tools 🔍 + +6️⃣ A helpful comment appears on the PR 💬 + ## 🎯 Expected Outcomes ✅ Build a real-world use case with Dagger @@ -116,6 +132,14 @@ The below steps will take you through making a breaking change to a file in our ```bash export GITHUB_TOKEN="XXX" ``` +The Azure OpenAI details can be found below: + +```bash + export AZURE_API_KEY="FT0Dd0iIglkzGbizOMUp79k0Frea7neDtVXRhFZ5m39CJJJcdfxFJQQJ99BEACYeBjFXJ3w3AAABACO" + export AZURE_API_ENDPOINT="https://vdfvdf.openai.azure.com/" +``` + +> **Note:** The full API key will be provided during the hackathon. - Put in your values and run in CLI: ```bash diff --git a/docs/dagger/dagger-hackathon/assets/hack-overview.jpeg b/docs/dagger/dagger-hackathon/assets/hack-overview.jpeg new file mode 100644 index 00000000..92c31e57 Binary files /dev/null and b/docs/dagger/dagger-hackathon/assets/hack-overview.jpeg differ