Skip to content

Instantly share code, notes, and snippets.

View Bruno-Furtado's full-sized avatar
👊
Don’t find fault, find a remedy.

Bruno Tortato Furtado Bruno-Furtado

👊
Don’t find fault, find a remedy.
View GitHub Profile
@shirakaba
shirakaba / setup.md
Last active May 16, 2024 13:57
Configuring Nexus as a private registry for npm packages

Get the details to connect to your Nexus-managed npm repository

Note: Nexus group repositories (good example in this StackOverflow question) are out of this tutorial's scope. In any case, deployment to group repositories is currently still an open issue for Nexus 3 (and not intended ever to be implemented in Nexus 2). Thus, it is assumed that we'll push & pull to/from the same repository, and ignore the idea of groups hereon in.

  1. Ask your sysadmin for a username & password allowing you to log into your organistation's Nexus Repository Manager.

  2. Test the login credentials on the Nexus Repository manager at: http://localhost:8081/nexus/#view-repositories (localhost in our case is replaced by a static IP, and can only be connected to over VPN). If your organisation requires a VPN to connect to it, connect to that VPN before proceeding with this tutori

@chourobin
chourobin / 0-bridging-react-native-cheatsheet.md
Last active June 28, 2024 20:49
React Native Bridging Cheatsheet
@diegoampessan
diegoampessan / Git commands
Last active May 20, 2019 22:17
Consulta rápida comandos GIT
ENVIAR ALTERAÇÕES PARA SERVIDOR REMOTO
---
git add . (todas as alteracoes, desde que esteja na pasta root do projeto)
git add <diretorio/nome_do arquivo> (para arquivo em especifico)
git commit -m "Descrição"
git push origin <branch>
RECEBER ALTERACOES SERVIDOR
---