Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luizfelipeleite/0f6e793a906e998ec31711043baadca0 to your computer and use it in GitHub Desktop.
Save luizfelipeleite/0f6e793a906e998ec31711043baadca0 to your computer and use it in GitHub Desktop.
Configuração de ambiente de trabalho Ubuntu
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@dominio.com
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 git@github.com:camaleaun/cli-config-command.git
wp package install git@github.com: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