## 1. Clone the directory
`git clone https://github.com/your-project.git`
## 2. Composer Update
`composer update`
## 3. Setup Database Connection
#### Open up the .env.example and edit this line:
`DB_CONNECTION=mysql`
`DB_HOST=127.0.0.1`
`DB_PORT=3306`
`DB_DATABASE=homestead`
`DB_USERNAME=your_username`
`DB_PASSWORD=your_password`
#### After that, save it as .env file. This is Important!
## 4. Setup the Key
`php artisan key:generate`
## 5. Run the Website
`php artisan serve`