July 28, 2014
Introduction
This article will get you going with a how to develop and architect Java-client
application for LeoFS. This article assumes that you have already installed LeoFS environment on your local or remote node. See Getting Started with LeoFS for more Information.
Installation and Setup S3 Java-client
The easiest way to install Java on your machine is through the yum or apt package installer. Then we need some additional Apache Ant.
Read more
Software Development Engineer at Rakuten
June 25, 2014
Introduction
This article will get you going with a how to develop and architect Ruby
application for LeoFS. This article assumes that you have already installed LeoFS environment on your local or remote node. See Getting Started with LeoFS for more Information.
Installation and Setup S3 Ruby-client
The easiest way to install Ruby on your machine is through the yum package installer. Then we need some additional Ruby dependancies.
Read more
Software Development Engineer at Rakuten
May 22, 2014
Introduction
This article will get you going with a PHP-client
application how to develop and architect applications for LeoFS. This article assumes that you have already installed LeoFS environment on your local or remote node. See Getting Started with LeoFS for more Information.
Installation & Setup PHP-client
CentOS, Fedora & RHEL:
##### Install PHP, SDK and Dependencies #####
$ sudo yum install php
$ php –v
Debian & Ubuntu based Installation
##### Install PHP, SDK and Dependencies #####
$ sudo apt-get install php5 php5-json php5-curl
$ php –v
###### Download Sample Project #####
$ git clone https://github.com/leo-project/leofs_client_tests.git
$ cd aws-sdk-php
$ curl -sS https://getcomposer.org/installer | php
$ sudo php composer.phar install
About the Sample
This sample application is designed to show you how to:
- Declare a dependency on the AWS SDK for PHP using Composer.
- Read access keys from environment variables or define it statically in this sample we are using static entry.
- Instantiate an Amazon Simple Storage Service (Amazon S3) client.
- Interact with Amazon S3 in various ways, such as creating a bucket and uploading a file.
The project's README
file contains more information about this sample code. If you have trouble getting set up or have other feedback about this sample codes, let us know on GitHub.
API Feature List
The storage API is compatible with the Amazon S3 REST API which means that any of the operations listed can be executed using any of the commonly available S3 libraries or tools.
Read more
Software Development Engineer at Rakuten