From e377bc3ea4a24aa5dd27c4bf640a0a731fb4cc35 Mon Sep 17 00:00:00 2001 From: Daniel Haven <49914607+danielh-official@users.noreply.github.com> Date: Sat, 13 Dec 2025 13:56:55 -0500 Subject: [PATCH 1/2] Add dev script (like with Laravel) to Composer --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index cee946b..82d7ffc 100644 --- a/composer.json +++ b/composer.json @@ -25,5 +25,11 @@ "psr-4": { "App\\Listeners\\": "listeners/" } + }, + "scripts": { + "dev": [ + "Composer\\Config::disableProcessTimeout", + "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"vendor/bin/jigsaw serve\" \"npm run dev\"" + ] } } From 1228a4ce13468d78ea6f0151d0a55e5679c4e966 Mon Sep 17 00:00:00 2001 From: Daniel Haven <49914607+danielh-official@users.noreply.github.com> Date: Sat, 13 Dec 2025 13:58:54 -0500 Subject: [PATCH 2/2] Update readme.md --- readme.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/readme.md b/readme.md index 93b3141..d2ede83 100644 --- a/readme.md +++ b/readme.md @@ -88,3 +88,11 @@ npm run dev # build static files with Vite npm run build ``` + +## Local Server + +To start your site locally, run the following: + +```bash +composer dev +``` \ No newline at end of file