Open existing project Laravel

0

I need to open a project previously made in laravel.

I've never worked with laravel, so I do not know where I might be going wrong.

The project came in a .zip file when I unzipped it it created a folder called engraf182-my-project-6609a7d53557

Within this folder you have the files

bootstrap, node_modules, public storage and vendor

So I looked at laravel this is not the way laravel creates his folders in a new project.

Each of these folders has more than a handful of folders inside and encrypted files.

Can anyone help me open this project ??

Thank you

    
asked by anonymous 26.02.2018 / 18:11

1 answer

0

Your computer will need to have PHP and these extensions (depending on the Laravel version of your application, see documentation / a>):

  • Relate the item
  • PHP > = 7.0.0
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension

You will also need to run the composer update command in the project root folder. For this you will need to install Composer if you have not already installed it (see the official site tutorial ).

After that, just run php artisan serve at the root of the project. Open link , and you'll see the project.

In short:

  • Installing PHP and Laravel extensions
  • Installing Composer
  • Download the project dependencies using composer update
  • Rotate php artisan serve
  • * If your project uses database, you will need to install the database and run php artisan migrate

        
    27.02.2018 / 19:30