Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 783 Bytes

readme.md

File metadata and controls

59 lines (38 loc) · 783 Bytes

JSON Editor

A tool built with Laravel SPA and JSON Editor to view, edit, format, and validate JSON.

Requirements

  • PHP ^7.2

Installation

Download the master branch.

git clone [email protected]:memochou1993/json-editor.git

Copy .env.example to .env.

cp .env.example .env

Install the Composer dependencies.

composer install

Set a random secure application key.

php artisan key:generate

Install the npm dependencies.

npm install

Compiling Assets

Watch assets for changes.

npm run watch

Run all Mix tasks.

npm run dev

Run all Mix tasks and minify output.

npm run prod