@depixy/image
v1.3.0
Published
Image proxy for Depixy.
Downloads
2
Readme
@depixy/image
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;
};
}