Archived
1
0

Add working directory to plugin config

This commit is contained in:
Asher
2021-01-21 13:49:45 -06:00
parent 3211eb1ce5
commit 00cfd9bdf1
3 changed files with 9 additions and 1 deletions

View File

@ -65,6 +65,7 @@ export class PluginAPI {
*/
private readonly csPlugin = "",
private readonly csPluginPath = `${path.join(util.paths.data, "plugins")}:/usr/share/code-server/plugins`,
private readonly workingDirectory: string | undefined = undefined,
) {
this.logger = logger.named("pluginapi")
}
@ -249,6 +250,7 @@ export class PluginAPI {
p.init({
logger: logger,
workingDirectory: this.workingDirectory,
})
logger.debug("loaded")

View File

@ -145,7 +145,8 @@ export const register = async (
app.use("/static", _static.router)
app.use("/update", update.router)
const papi = new PluginAPI(logger, process.env.CS_PLUGIN, process.env.CS_PLUGIN_PATH)
const workingDir = args._ && args._.length > 0 ? path.resolve(args._[args._.length - 1]) : undefined
const papi = new PluginAPI(logger, process.env.CS_PLUGIN, process.env.CS_PLUGIN_PATH, workingDir)
await papi.loadPlugins()
papi.mount(app, wsApp)
app.use("/api/applications", apps.router(papi))