Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Aug 1, 2024
2 parents 4bd149b + 89a8c83 commit f4c187f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion App/stubs/config-local.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

// RockFrontend
$config->livereload = 1;
$config->livereloadBuild = true;

// RockMigrations
// $config->filesOnDemand = 'https://your-live.site/';
Expand All @@ -28,6 +29,7 @@
'outputMode' => 'development',
'guestForceDevelopmentLocal' => true,
'forceIsLocal' => true,
'localRootPath' => getenv("DDEV_APPROOT"),
'localRootPath' => getenv("TRACY_LOCALROOTPATH"),
'numLogEntries' => 100, // for RockMigrations
// 'editor' => 'cursor://file/%file:%line',
];
1 change: 1 addition & 0 deletions Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public function __construct($name = "RockShell", $version = null)
if (!$version) {
$version = json_decode(file_get_contents(__DIR__ . "/package.json"))->version;
}
$version .= ' @ PHP' . phpversion();
$container = new Container;
$events = new Dispatcher($container);
parent::__construct($container, $events, $version);
Expand Down

0 comments on commit f4c187f

Please sign in to comment.