Answers for "laravel 8 from scratch finished github"

0

copy laravel project from github

Do the following steps:

1.Run `git clone 'link projer github'

2.Run composer install

3.Run cp .env.example .env or copy .env.example .env

4.Run php artisan key:generate

5.Run php artisan migrate

6.Run php artisan db:seed

7.Run php artisan serve

8.Go to link localhost:8000 OR 127.0.0.1:8000
Posted by: Guest on December-28-2021
1

run laravel project from github

Clone your project
Go to the folder application using cd command on your cmd or terminal
Run composer install on your cmd or terminal
Copy .env.example file to .env on the root folder. You can type copy .env.example .env if using command prompt Windows or cp .env.example .env if using terminal, Ubuntu
Open your .env file and change the database name (DB_DATABASE) to whatever you have, username (DB_USERNAME) and password (DB_PASSWORD) field correspond to your configuration.
By default, the username is root and you can leave the password field empty. (This is for Xampp)
By default, the username is root and password is also root. (This is for Lamp)
Run php artisan key:generate
Run php artisan migrate
Run php artisan serve
Go to localhost:8000
Posted by: Guest on September-19-2020

Code answers related to "laravel 8 from scratch finished github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language