Skip to content

Instantly share code, notes, and snippets.

View favasconcelos's full-sized avatar
🇧🇷
(:

Felipe Vasconcelos favasconcelos

🇧🇷
(:
View GitHub Profile
@favasconcelos
favasconcelos / launch.json
Created May 12, 2020 09:14
NestJS - VSCode - DEBUG
{
"version": "0.1.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Nest JS",
"program": "${workspaceFolder}/dist/main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": [
@favasconcelos
favasconcelos / keybase.md
Last active July 13, 2020 10:49
keybase.md

Keybase proof

I hereby claim:

  • I am favasconcelos on github.
  • I am azevefei (https://keybase.io/azevefei) on keybase.
  • I have a public key ASBKSBLWFw7JcYJr2Mi_vv2vwp9-G-o1NVp8triNJwQK3Qo

To claim this, I am signing this object:

@favasconcelos
favasconcelos / ..backend_dot_files
Last active January 10, 2020 22:32
Bakckend project configs files.
..
@favasconcelos
favasconcelos / .gitlab-ci.yml
Created October 27, 2018 14:16 — forked from josephrace/.gitlab-ci.yml
Configuration file for create-react-app on GitLab Pages
image: node:7.9.0 # change to match your node version
cache:
paths:
- node_modules/
before_script:
- npm install
test:
@favasconcelos
favasconcelos / ..frontend-config-files
Last active May 31, 2020 15:22
Frontend project configs files.
Frontend configuration files
@favasconcelos
favasconcelos / build.gradle
Last active July 24, 2018 13:47
Signing Android APK without changing the build.gradle (Same key is used for release and debug). The keystore.json is in the root directory of the project.
android {
signingConfigs {
key {
// Load keystore credentials from a config file
def credsFilePath = file("../keystore.json").toString()
def credsFile = new File(credsFilePath, "").getText('UTF-8')
def json = new groovy.json.JsonSlurper().parseText(credsFile)
// Save the config into the variables
storeFile file(json.android.storeFile)
storePassword json.android.storePassword
@favasconcelos
favasconcelos / cloudSettings
Last active February 29, 2020 10:58
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-02-29T10:58:46.320Z","extensionVersion":"v3.4.3"}
@favasconcelos
favasconcelos / config
Last active June 7, 2016 14:12
ssh config file with pattern
Host *.server.com
User user1
IdentityFile ~/.ssh/server/id_rsa
Host project1
HostName project1.server.com
Host project2
HostName project2.server.com
Port 1234