Python path setting (#2409)

* Add python package
* Add python path backend config
* Add python path to system settings page
* Apply python path to script scrapers and plugins
This commit is contained in:
WithoutPants
2022-03-24 09:22:41 +11:00
committed by GitHub
parent 329b611348
commit 0cd9a0a474
17 changed files with 147 additions and 53 deletions

View File

@@ -147,6 +147,14 @@ export const SettingsConfigurationPanel: React.FC = () => {
value={general.customPerformerImageLocation ?? undefined}
onChange={(v) => saveGeneral({ customPerformerImageLocation: v })}
/>
<StringSetting
id="python-path"
headingID="config.general.python_path.heading"
subHeadingID="config.general.python_path.description"
value={general.pythonPath ?? undefined}
onChange={(v) => saveGeneral({ pythonPath: v })}
/>
</SettingSection>
<SettingSection headingID="config.general.hashing">