Skip to content

Commit

Permalink
default docker compose step (#118)
Browse files Browse the repository at this point in the history
* default docker compose step
  • Loading branch information
NivRichter authored Feb 25, 2024
1 parent 2300983 commit a116835
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/building-your-quest/creating-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@ githubAction: Github Actions configuration to run in opened PRs | optional
solution: Flow node logic to execute when a user requests a solution | optional
```
## Default Steps
A quest that requires a [GitHub repository] will automatically include the default step `codespace_start_docker_compose` at the beginning. This step prompts users to open their codespace and run `docker compose up` to start their application.
If you prefer, you can manually add this step in a different order. For example:
```yaml
steps:
- load_data
- create_index
- codespace_start_docker_compose
- chat_server
...
```


## Additional Resources
- [Triggers and Payload]
- [Flow Nodes]
Expand All @@ -42,3 +56,5 @@ solution: Flow node logic to execute when a user requests a solution | optional
[Actions]: {% link docs/building-your-quest/actions/index.md %}
[Conditions]: {% link docs/building-your-quest/conditions/index.md %}
[Solution]: {% link docs/building-your-quest/solution.md %}
[GitHub repository]: {% link docs/building-your-quest/repository.md %}

0 comments on commit a116835

Please sign in to comment.