Skip to content

Commit 5cc10c7

Browse files
authored
Merge pull request #1392 from hydephp/realtime-compiler-dashboard-improvements
Interactive realtime compiler dashboard feature
2 parents 86b06e6 + 4c90613 commit 5cc10c7

File tree

5 files changed

+782
-15
lines changed

5 files changed

+782
-15
lines changed

config/hyde.php

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,24 @@
403403
*/
404404

405405
'server' => [
406+
// The default port the preview is served on
406407
'port' => env('SERVER_PORT', 8080),
408+
409+
// The default host the preview is served on
407410
'host' => env('SERVER_HOST', 'localhost'),
408-
'dashboard' => env('SERVER_DASHBOARD', true),
411+
412+
// Should preview pages be saved to the output directory?
409413
'save_preview' => true,
414+
415+
// Should the realtime compiler dashboard be enabled?
416+
'dashboard' => env('SERVER_DASHBOARD', true),
417+
418+
// Can the dashboard make edits to the project file system?
419+
'dashboard_editor' => true,
420+
421+
// Should the dashboard show tips?
422+
'dashboard_tips' => true,
423+
410424
],
411425

412426
/*

packages/framework/config/hyde.php

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,24 @@
403403
*/
404404

405405
'server' => [
406+
// The default port the preview is served on
406407
'port' => env('SERVER_PORT', 8080),
408+
409+
// The default host the preview is served on
407410
'host' => env('SERVER_HOST', 'localhost'),
408-
'dashboard' => env('SERVER_DASHBOARD', true),
411+
412+
// Should preview pages be saved to the output directory?
409413
'save_preview' => true,
414+
415+
// Should the realtime compiler dashboard be enabled?
416+
'dashboard' => env('SERVER_DASHBOARD', true),
417+
418+
// Can the dashboard make edits to the project file system?
419+
'dashboard_editor' => true,
420+
421+
// Should the dashboard show tips?
422+
'dashboard_tips' => true,
423+
410424
],
411425

412426
/*

0 commit comments

Comments
 (0)