To clone and run this application, you'll need Git, Node.js (which comes with npm) and Composer installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/JNietoR/Vesta.git
# Go into the repository
$ cd vesta
# Install dependencies
$ npm install
$ composer install
# Configure Database
Create database with a name.
# Configure .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=nameofdatabase
DB_USERNAME=root
DB_PASSWORD=
# Generate app key and link storage
$ php artisan key:generate
$ php artisan storage:link
# Run migration
$php artisan migrate
# Run the app
$ npm run dev
$ php artisan serve