S3 Buckets
S3 Buckets allows you to store and retrieve your data easily. You can use any S3 compatible clients to communicate with our S3 buckets backend.
Create new buckets
- Go to console and visit the S3 Buckets page which can be found under Playground (top menu) and Training (side menu).
- Click on the Create button.
- Fill in the bucket details and click on the Create bucket button.
Upload objects
- Go to profile and get your S3 Access Key details
- Configure your S3 compatible tools accordingly.
- For endpoint, please use
https://dl.bitdeer.ai
.
- For endpoint, please use
- Upload the object into the bucket.
Example using mc
- Download the tool from Github.
- Run this command -
mc cp <src> <alias>/<bucket name>/<dest>
Configure the ~/.mc/config.json
file using this sample.
{
"version": "10",
"aliases": {
"<alias>": {
"url": "https://dl.bitdeer.ai",
"accessKey": "<access key>",
"secretKey": "<secret key>",
"api": "S3v4",
"path": "auto"
}
}
}