# Chirp
A cooler and simplified version of Twitter made using Laravel and Vue.js with :heart:
## Getting Started
Start CMD and cd into your chosen directory or if you have XAMPP installed much better if in htdocs folder
Clone this repository in your machine
```
git clone https://github.com/giovictor/chirp.git
```
Create the vendor directory and install the Composer Packages including Laravel
```
composer install
```
Create the node_modules directory and install all NPM Packages including Vue.js
```
npm install
```
Start the server either on XAMPP htdocs folder or using
```
php artisan serve
```
To compile any JavaScript or Sass changes run
```
npm run dev
//or
npm run watch
```