Skip to content

Instantly share code, notes, and snippets.

@dieissonmartins
Last active July 19, 2019 13:45
Show Gist options
  • Save dieissonmartins/97793cdfba94be66ca56713a162f9f74 to your computer and use it in GitHub Desktop.
Save dieissonmartins/97793cdfba94be66ca56713a162f9f74 to your computer and use it in GitHub Desktop.
1- Subindo um projeto
- git init
- git add --all
- git commit -m "commit inicial"
- git remote add origin https://github.com/dieissonmartins/nome-projeto.git
- git push origin master
2- Clonando um projeto
- git clone https://github.com/dieissonmartins/nome-projeto.git
-*entre na pasta do projeto
1.1 - Digite o commando "composer install". Ele vai instalar todos os pacotes php necessários.
ou
1.2 - Digite o commando "composer update". Ele vai instalar todos os pacotes php necessários.
2 - Digite o commando "php artisan key:generate". Esse vai gerar uma chave para sua aplicação. Sem isso o Laravel não vai funcionar
3 - fim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment