Skip to content

Instantly share code, notes, and snippets.

View felipeggrod's full-sized avatar

Felipe Rodrigues felipeggrod

View GitHub Profile
@felipeggrod
felipeggrod / deploy.sh
Last active September 22, 2022 20:42
Automate Game/App Server Deployment scripts to Google Cloud
sh .\uploadServerApp.sh
sh .\restartServer.sh
@felipeggrod
felipeggrod / ExternalEntity.ts
Last active May 6, 2022 14:56
type-graphql + typeorm: local entity with a property that references an external entity
import { Field, ObjectType } from 'type-graphql';
import { GetHTTP } from '../utils/externalHttpAxiosHelper';
@ObjectType()
export class Employment {
@Field()
title: string;
@Field()
key_skill: string;
}