This is a minimalistic Laravel 6 application that demonstrates how to build a simple storefront using the Vanilo framework. It also contains Vanilo's admin panel.
The app uses the default Bootstrap theme that comes with Laravel.
1. Install Dependencies:
cd demo/
composer install2. Configure the environment:
The
.envfile is in the app's root directory.
- Create a database for your application.
- Initialize .env (quickly:
cp .env.example .env && php artisan key:generate. - add the DB credentials to the
.envfile.
3. Install Database:
Run these commands in your terminal:
php artisan migrate --seed4. Create the first admin user:
Run this command:
php artisan appshell:superEnter your email, name, password, accept admin as role.
5. Open the application:
Run the site with php artisan serve and access the site:
Products are not seeded so open the admin panel first to add some products.
For further details refer to the Vanilo Documentation.










