Hi upload,
To connect to your storage with rclone you have to create the config file first. You can create the config file with rclone command: rclone config. This command enables you to have the config in plain text or you can encrypt it with a password for more security. The variables for rclone config file are following:
type = swift
user = [your email]
key = [your password]
auth =
https://authenticate.blomp.com
tenant = storage
auth_version = 2
Other variables can be ignored, the above are the only ones you need to connect to Blomp storage.
Your config now looks like:
Code: Select all
[remote]
type = swift
user = [your email]
key = [your password]
auth = https://authenticate.blomp.com
tenant = storage
auth_version = 2
You can now use rclone to connect to your storage. For example, list the content of your storage:
Code: Select all
rclone.exe --config=my.conf ls remote:[your email]
Or sync your container with a local directory (warning, this will delete any excess files in your bucket):
Code: Select all
rclone.exe --config=my.conf sync /LOCAL/FOLDER/ remote:[your email]