Frugal Object Storage
You can install frugalos
by executing the following command:
console
$ cargo install frugalos
Below is a minimal usage example: ```console // Creates a cluster. $ frugalos create --id example --data-dir example/
// Starts a frugalos process in the background. $ frugalos start --data-dir example/ &
// Add a device and a bucket for storing objects. $ DEVICEJSON='{"file": {"id": "file0", "server": "example", "filepath": "example/file0.lusf"}}' $ curl -XPUT -d "$DEVICEJSON" http://localhost:3000/v1/devices/file0
$ BUCKETJSON='{"metadata": {"id": "bucket0", "device": "file0", "tolerablefaults": 1}}' $ curl -XPUT -d "$BUCKET_JSON" http://localhost:3000/v1/buckets/bucket0
// PUT and GET objects $ curl -XPUT -d 'foo' http://localhost:3000/v1/buckets/bucket0/objects/foo $ curl http://localhost:3000/v1/buckets/bucket0/objects/foo foo ```
Please see [REST API] for details and other available APIs.
Please see [Developer's Guide].