2
I put a Laravel project of my machine into git with git ignore default.
Then to use it on another PC I downloaded it from git from the command line and tried to install Composer:
composer install
But he didn’t install the . env and other things otherwise I’m wrong
Then I created a new project with the same name by CLI, then copied the project I downloaded from git and pasted over the new project and it worked.
I wanted to know if there is a way with less gambiarra to make it work, IE without creating a new project, download another git and copy and paste in each other
The only thing you need is the . env file, which you can copy from .env.example. What other things you need?
– gmsantos