Skip to content
View felinto-dev's full-sized avatar
Refactor all the things
Refactor all the things
Block or Report

Block or report felinto-dev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. rm-rf-telegram rm-rf-telegram Public

    Dockerfile

  2. After a lot of headaches with plugin... After a lot of headaches with plugins that propose to be a wrapper between nestjs and aws-sdk, I decided to configure the dependency injection by myself and the result was not bad. You can use this code as the basis for any cloud storage S3-compatible. I am using @nestjs/config to manage the settings of environment variables. For additional instructions on how to integrate with your system, please check the documentation.
    1
    import { S3 } from 'aws-sdk';
    2
    import { Module } from '@nestjs/common';
    3
    import { ConfigModule, ConfigService } from '@nestjs/config';
    4
    
                  
    5
    import { scalewayConfig } from '@/app/config/scaleway.config';
  3. bulk-downloader bulk-downloader Public

    TypeScript 1