currently i need to work on a project using laravel and vue
i cloned the project that i need to work on from github,
the project is using vue and laravel with passport
but i'm not sure what are the commands i need to use to run the project on my local machine
do i follow the same commands like when i clone a laravel project? or there is something extra for vue?
i tried to install passport and run few commands but still facing blank page
if someone can provide the commands in order that would be much appreciate it
CodePudding user response:
It's really difficult to say what commands needs to be run in your specific case, since we can't see the code. Also make sure your .env is set up correctly with database connections etc.
But generally you would need something like this.
Install packages
composer install
npm installCreate APP_KEY for Laravel
php artisan key:generate
Run migrations to create all your database tables.
php artisan migrate
Start artisan server for the Laravel backend. Default port is 8000, so you should reach it at http://localhost:8000
php artisan serve
Compile the front end files
npm run dev
But this is all guesswork. Your project could be set up different.