Created
December 4, 2020 17:23
-
-
Save luizfelipeleite/0f6e793a906e998ec31711043baadca0 to your computer and use it in GitHub Desktop.
Configuração de ambiente de trabalho Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Instalar Chrome | |
baixar em https://www.google.com/intl/pt-BR/chrome/ | |
na pasta Downloads | |
abrir o terminal e instalar com | |
sudo dpkg -i filename | |
instalar git | |
sudo apt install git | |
git config --global user.name "Nome Sobrenome" | |
git config --global user.email [email protected] | |
criar par de chaves open ssh | |
ssh-keygen -t rsa | |
copiar suas chaves substituindo conteúdo em | |
vi .ssh/id_rsa.pub e vi .ssh/id_rsa | |
sudo add-apt-repository -y ppa:nginx/stable | |
sudo apt install -y php7.4-fpm php7.4-curl php7.4-dom php7.4-gd php7.4-mbstring php7.4-mysql php7.4-cli php7.4-zip | |
instalar composer de acordo com https://getcomposer.org/download/ | |
instalar o valet linux de acordo com https://cpriego.github.io/valet-linux/ | |
instalar valet linux dependências sudo apt-get install libnss3-tools jq xsel | |
instalar o wp-cli de acordo com https://wp-cli.org/#installing | |
wp package install [email protected]:camaleaun/cli-config-command.git | |
wp package install [email protected]:camaleaun/run-command.git | |
baixe o visual code em https://code.visualstudio.com/ e instalar executando o arquivo | |
instalar mysql | |
sudo apt install mysql-server | |
sudo mysql mysql -e "UPDATE user SET plugin='mysql_native_password' WHERE User='root';FLUSH PRIVILEGES;" | |
instalar node.js/npm https://github.com/nodesource/distributions/blob/master/README.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment