Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 968 Bytes

README.md

File metadata and controls

49 lines (35 loc) · 968 Bytes

Demo for the commenter package

Commenter Package | Admin Panel

Description

This is a demo project for the commenter package

Installation

  1. Create .env file and copy the .env.example file content.

  2. Install composer dependencies,

        composer install
  3. Create database.sqlite in database directory

  4. Generate app key

        php artisan key:generate
  5. Install Commenter

    php artisan commenter:install
  6. Migrate and seed the database

        php artisan migrate:fresh --seed
  7. Install and build npm dependencies

        npm install
        npm run dev
  8. Start server

        php artisan serve