Skeleton README documents the hot-reload story end-to-end: - PHP-side: frankenphp run --watch (already what `make dev` uses). - QML-side: Qt Creator Reload, qmlls live preview, run-from-source. - Dev console: Ctrl+` toggle from sub-commit 1. Both skeleton and todo example ship .vscode/ (launch.json with Xdebug attach + Qt-host gdb launch + a compound config, tasks.json for the make targets, settings.json) and .idea/runConfigurations/ shell run configs for `make dev`, `make doctor`, `make quality` (and `make appimage` in the todo example). PhpStorm's Xdebug listener is global so we don't ship a project-level run config for it; the README points users at the toolbar toggle. php-qml-init also rewrites .vscode/launch.json's binary path and config label so a fresh scaffold's debugger configs point at the new project's binary. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
816 B
XML
18 lines
816 B
XML
<component name="ProjectRunConfigurationManager">
|
|
<configuration default="false" name="make dev" type="ShConfigurationType">
|
|
<option name="SCRIPT_TEXT" value="make dev" />
|
|
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
|
|
<option name="SCRIPT_PATH" value="" />
|
|
<option name="SCRIPT_OPTIONS" value="" />
|
|
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
|
|
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
|
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
|
|
<option name="INTERPRETER_PATH" value="/bin/bash" />
|
|
<option name="INTERPRETER_OPTIONS" value="" />
|
|
<option name="EXECUTE_IN_TERMINAL" value="true" />
|
|
<option name="EXECUTE_SCRIPT_FILE" value="false" />
|
|
<envs />
|
|
<method v="2" />
|
|
</configuration>
|
|
</component>
|