1.3.0 • Published 4 years ago

@depixy/image v1.3.0

Weekly downloads
1
License
Apache-2.0
Repository
gitlab
Last release
4 years ago

@depixy/image

License Pipelines Coverage NPM semantic-release

Image proxy for Depixy.

Installation

npm i @depixy/image

Getting Started

Start Application

depixy-image

or

npm run start

if you are in development. Note that you need to build the TypeScript first.

Configuration

Environment variable DEPIXY_CONFIG need to be defined and point to a JavaScript file that export configuration. See config.example.js for example.

The configuration is the following

export interface Configuration {
  port: number;
  s3: {
    endPoint: string;
    useSSL: boolean;
    accessKey: string;
    secretKey: string;
    bucket: string;
    port: number;
  };
}