@tigrisdata/cli 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # @tigrisdata/cli
2
+
3
+ Command line interface for Tigris object storage.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @tigrisdata/cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ # Upload a file
15
+ tigris put my-file.txt ./local-file.txt
16
+
17
+ # Download a file
18
+ tigris get my-file.txt -o ./downloaded-file.txt
19
+
20
+ # List files
21
+ tigris list
22
+
23
+ # Remove a file
24
+ tigris remove my-file.txt
25
+ ```
26
+
27
+ ## Configuration
28
+
29
+ Configure your Tigris credentials via environment variables:
30
+
31
+ ```bash
32
+ TIGRIS_STORAGE_BUCKET=your-bucket
33
+ TIGRIS_STORAGE_ACCESS_KEY_ID=your-access-key
34
+ TIGRIS_STORAGE_SECRET_ACCESS_KEY=your-secret-key
35
+ TIGRIS_STORAGE_ENDPOINT=your-endpoint
36
+ ```
37
+
38
+ ## License
39
+
40
+ MIT