- run_dev.py: starts proxy, admin and frontend together with colored output per process; handles SIGTERM from PyCharm Stop button - .idea/runConfigurations/Dev.xml: PyCharm Python run config - .gitignore: allow Dev.xml via layered negation pattern - vite.config.js: open browser automatically on dev server start
16 lines
734 B
XML
16 lines
734 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<component name="ProjectRunConfigurationManager">
|
|
<configuration default="false" name="Dev" type="PythonConfigurationType" factoryName="Python">
|
|
<module name="llm_quota" />
|
|
<option name="INTERPRETER_OPTIONS" value="" />
|
|
<option name="PARENT_ENVS" value="true" />
|
|
<option name="SDK_HOME" value="" />
|
|
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
|
<option name="IS_MODULE_SDK" value="false" />
|
|
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
<option name="SCRIPT_NAME" value="$PROJECT_DIR$/run_dev.py" />
|
|
<option name="PARAMETERS" value="" />
|
|
<method v="2" />
|
|
</configuration>
|
|
</component> |