peertube-plugin-livechat/server/lib/prosody/config/paths.ts
John Livingston ed3f236120
Prosody Appimage: supports only x86_64:
* stop trying to generated an ARM64 AppImage (as it is buggy)
* display a warning in the settings if incompatible CPU detected
* documentation for a workaround

Implements #120.
2022-12-12 19:17:43 +01:00

22 lines
343 B
TypeScript

interface ProsodyFilePaths {
dir: string
pid: string
error: string
log: string
config: string
data: string
certs: string
modules: string
avatars: string
exec?: string
execArgs: string[]
execCtl?: string
execCtlArgs: string[]
appImageToExtract?: string
appImageExtractPath: string
}
export {
ProsodyFilePaths
}