-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6: Support custom XML config
- Loading branch information
Showing
29 changed files
with
498 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<dload> | ||
<registry> | ||
<software name="RoadRunner" alias="rr" description="High performant Application server"> | ||
<!-- Example --> | ||
<dload | ||
temp-dir="./runtime" | ||
> | ||
<actions> | ||
<download software="rr" version="^2.12.0" /> | ||
<download software="dolt" /> | ||
<download software="temporal" /> | ||
</actions> | ||
<registry overwrite="false"> | ||
<software name="RoadRunner" alias="rr" | ||
homepage="https://roadrunner.dev" | ||
description="High performant Application server"> | ||
<repository type="github" uri="roadrunner-server/roadrunner" asset-pattern="/^roadrunner-.*/"/> | ||
<file rename="rr" pattern="/^(roadrunner|rr)(?:\.exe)?$/" /> | ||
</software> | ||
<software name="Dolt" description="Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a Git repository"> | ||
<repository type="github" uri="dolthub/dolt" asset-pattern="/^dolt-.*/"/> | ||
<file pattern="/^(dolt)(?:\.exe)?$/" /> | ||
</software> | ||
<software name="Temporal" description="Temporal command-line interface and development server"> | ||
<repository type="github" uri="temporalio/cli" asset-pattern="/^temporal_cli_.*/"/> | ||
<file pattern="/^(temporal)(?:\.exe)?$/" /> | ||
</software> | ||
</registry> | ||
</dload> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[ | ||
{ | ||
"name": "RoadRunner", | ||
"alias": "rr", | ||
"homepage": "https://roadrunner.dev", | ||
"description": "High-performance PHP application server, load-balancer and process manager written in Golang", | ||
"repositories": [ | ||
{ | ||
"type": "github", | ||
"uri": "roadrunner-server/roadrunner", | ||
"asset-pattern": "/^roadrunner-.*/" | ||
} | ||
], | ||
"files": [ | ||
{ | ||
"pattern": "/^(roadrunner|rr)(?:\\.exe)?$/", | ||
"rename": "rr" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Temporal", | ||
"alias": "temporal", | ||
"description": "Temporal SDK", | ||
"homepage": "https://temporal.io", | ||
"repositories": [ | ||
{ | ||
"type": "github", | ||
"uri": "temporalio/cli", | ||
"asset-pattern": "/^temporal_cli_.*/" | ||
} | ||
], | ||
"files": [ | ||
{ | ||
"pattern": "/^(temporal)(?:\\.exe)?$/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Dolt", | ||
"alias": "dolt", | ||
"description": "Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository.", | ||
"homepage": "https://www.dolthub.com", | ||
"repositories": [ | ||
{ | ||
"type": "github", | ||
"uri": "dolthub/dolt", | ||
"asset-pattern": "/^dolt-.*/" | ||
} | ||
], | ||
"files": [ | ||
{ | ||
"pattern": "/^(dolt)(?:\\.exe)?$/" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.