You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hypernode-platform/object-storage/getting-started-with-object-storage.md
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,56 @@ app@testhypernode ~ # hypernode-object-storage info
63
63
64
64
You can use the credentials and the URL now to configure remote storage for your application with the help of [this document](../../ecommerce-applications/magento-2/how-to-configure-remote-storage-for-magento-2-x.md).
65
65
66
+
### Managing objects in object storage
67
+
68
+
You can manage your objects using the `hypernode-object-storage objects` subcommand.
69
+
It supports all common operations--listing, copying, moving, and deleting files--while also allowing you to sync files in the background and monitor the progress of an ongoing sync.
sync Synchronize files between a local directory and an object storage location
80
+
cp Copy a file or object from one location to another
81
+
ls List objects in an S3 bucket or folder
82
+
mv Move or rename a file or object
83
+
rm Delete an object from S3
84
+
show Display the current status of an ongoing sync process
85
+
86
+
options:
87
+
-h, --help show this help message and exit
88
+
```
89
+
90
+
It is important to note that `hypernode-object-storage objects` supports all optional flags available in `aws s3`, allowing you to customize its behavior for advanced configurations.
91
+
92
+
#### Syncing files and monitoring progress
93
+
94
+
Syncing files between your local directory and object storage is simple. Run the following command:
0 commit comments