mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
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:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user