We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce7e2c commit d22d7d0Copy full SHA for d22d7d0
gravity/README.md
@@ -0,0 +1,10 @@
1
+Gravity Unikernel Hello World
2
+==================
3
+
4
+```sh
5
+gravity -c hi.gravity -o hi.json
6
+```
7
8
9
+$ ops run gravity -c config.json
10
gravity/config.json
@@ -0,0 +1,4 @@
+{
+ "Files": ["hi.json"],
+ "Args": ["-x", "hi.json"]
+}
gravity/hi.gravity
@@ -0,0 +1,3 @@
+func main() {
+ System.print("Hello World!")
0 commit comments