Giter VIP home page Giter VIP logo

s3filestore's Introduction

S3 FileStore

A module for Omeka S to store files on Amazon S3.

This module is a work in progress and is not feature complete.

After installing the module, you must make some changes to your installation's config/local.config.php file:

    // change the Omeka\File\Store alias
    'service_manager' => [
        'aliases' => [
            'Omeka\File\Store' => 'S3FileStore\S3FileStore',
        ],
    ],

    // add this section; fill in your AWS/S3 details here
    's3_file_store' => [
        'client_params' => [
            'region' => '<fill in AWS region>',
            'credentials' => [
                'key' => '<fill in AWS key>',
                'secret' => '<fill in AWS secret key>',
            ],
        ],
        'bucket' => '<fill in S3 bucket name>',
    ],

    // alternatively, if using an EC2 role instead of credentials
    's3_file_store' => [
        'client_params' => [
            'region' => '<fill in AWS region>',
        ],
        'bucket' => '<fill in S3 bucket name>',
    ],

s3filestore's People

Contributors

zerocrates avatar

Watchers

 avatar  avatar

s3filestore's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.