0.0.3 • Published 2 years ago

@platohq/nestjs-google-storage v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@platohq/nestjs-google-storage

Description

How to install

npm install @platohq/nestjs-google-storage

or

yarn add @platohq/nestjs-google-storage

How to use

Register the module

import { GoogleStorageModule } from '@platohq/nestjs-google-storage';

@Module({
  imports: [
    GoogleStorageModule.register({
      defaultBucketname: GOOGLE_STORAGE_BUCKET_HERE,
      projectId: GOOGLE_PROJECT_ID_HERE,
      keyFilename: GOOGLE_APPLICATION_CREDENTIALS_PATH_HERE,
    })
  ],
})
export class AppModule {
}