javasop commited on
Commit
bcbd0a6
·
verified ·
1 Parent(s): 185b4b1

Add README

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - orbital
5
+ - cli
6
+ - schema-validation
7
+ ---
8
+
9
+ # Orbital CLI
10
+
11
+ Binary releases of the Orbital CLI for use in training pipelines.
12
+
13
+ ## Files
14
+
15
+ - `orbital-linux-x86_64` - Linux x86_64 binary
16
+
17
+ ## Usage
18
+
19
+ ```bash
20
+ # Download
21
+ wget https://huggingface.co/orbital-ai/orbital-cli/resolve/main/orbital-linux-x86_64 -O orbital
22
+ chmod +x orbital
23
+
24
+ # Validate a schema
25
+ ./orbital validate schema.orb
26
+ ```
27
+
28
+ ## Building from Source
29
+
30
+ ```bash
31
+ cd orbital-rust
32
+ cargo build --release --bin orbital
33
+ ```