Guia Rápido para Git e GitLab

Command line instructions You can also upload existing files from your computer using the instructions below. Git global setup git config –global user.name “Diogo Muneratto” git config –global user.email “diogo@digitalone.com.br” Create a new repository git clone https://gitlab.com/assinatura-eletronica/base-git-lab.git cd base-git-lab git switch –create main touch README.md git add README.md git commit -m “add README” git push […]

Leia Mais

Instalando PHP no MacOS php@7.4

Pré-requisitos Iremos utilizar o gerenciador de pacotes do macOS, o Homebrew. Primeiramente se certifique que o Homebrew esteja atualizado: …e configurado corretamente: Como o repositório oficial do Homebrew demora muito para atualizar as versões do PHP, iremos utilizar o repositório de terceiros @shivammahtur. Este repositório nos permite instalar de forma rápida até mesmo versões betas do […]

Leia Mais

iOS build failed: Starting from Xcode 14

🍎 iOS build failed: Starting from Xcode 14, resource bundles are signed by default, which requires setting the development team for each resource bundle target. To resolve this issue, downgrade to an older Xcode version using the “image” field in eas.json, or turn off signing resource bundles in your Podfile: https://expo.fyi/r/disable-bundle-resource-signing Learn more: https://docs.expo.dev/build-reference/infrastructure/#ios-build-server-configurations entre […]

Leia Mais

Expo React Native | code: ‘ERR_OSSL_EVP_UNSUPPORTED’

Solução para o erro no expo quando executa no terminal no macos ou linux: Error: error:0308010C:digital envelope routines::unsupported     at new Hash (node:internal/crypto/hash:71:19)     at Object.createHash (node:crypto:133:10)     at module.exports     at FSReqCallback.readFileAfterClose [as oncomplete] (node:internal/fs/read_file_context:68:3) {   opensslErrorStack: [ ‘error:03000086:digital envelope routines::initialization error’ ],   library: ‘digital envelope routines’,   […]

Leia Mais