Skip to content

Instantly share code, notes, and snippets.

View hlspablo's full-sized avatar
🎯
Focused

Pablo Henrique hlspablo

🎯
Focused
View GitHub Profile
@anchan828
anchan828 / README.md
Last active July 22, 2024 10:33
This is an improvement to allow @nestjs/[email protected] to handle CustomRepository. I won't explain it specifically, but it will help in some way. https://github.com/nestjs/typeorm/pull/1233

You need to provide some classes and decorators yourself to maintain the same style as [email protected].

1. EntityRepository -> CustomRepository

@EntityRepository(UserEntity)
export class UserRepository extends Repository<UserEntity> {}

@vielhuber
vielhuber / script.sh
Last active October 30, 2024 01:42
PostgreSQL: Backup and restore export import pg_dump with password on command line #sql
# best practice: linux
nano ~/.pgpass
*:5432:*:username:password
chmod 0600 ~/.pgpass
# best practice: windows
edit %APPDATA%\postgresql\pgpass.conf
*:5432:*:username:password
# linux