We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 890f9db commit cddc7e4Copy full SHA for cddc7e4
1 file changed
README.md
@@ -14,7 +14,33 @@ gem "serverkit-mise"
14
15
## Usage
16
17
-TODO: Write usage instructions here
+### Prerequisites
18
+
19
+- Ensure you have [serverkit](https://github.com/serverkit/serverkit) gem installed
20
+- Ensure you have [mise](https://github.com/jdx/mise) installed on your system
21
22
+### Basic Example
23
24
+Create a recipe file that uses the mise resources:
25
26
+```yaml
27
+# recipe.yml
28
+resources:
29
+ # Install Node.js using mise
30
+ - type: mise_install
31
+ name: node
32
+ version: 20.10.0
33
+ # Install Ruby and set it as global
34
+ - type: mise_use
35
+ name: ruby
36
+ version: 3.3.0
37
+```
38
39
+Then apply your recipe with Serverkit:
40
41
+```console
42
+$ serverkit apply recipe.yml
43
44
45
## Resource
46
0 commit comments