tweak: enable convert module on selfhosted run

This commit is contained in:
KernelDeimos
2025-02-06 17:34:57 -05:00
parent 2b0e173975
commit 5e30958a14
2 changed files with 3 additions and 0 deletions
@@ -217,6 +217,7 @@ class DriverService extends BaseService {
['puter-chat-completion']: 'openai-completion',
['puter-image-generation']: 'openai-image-generation',
'puter-exec': 'judge0',
'convert-files': 'convert-api',
'puter-send-mail': 'user-send-mail',
'puter-apps': 'es:app',
'puter-subdomains': 'es:subdomain',
+2
View File
@@ -90,6 +90,7 @@ const main = async () => {
PuterExecModule,
InternetModule,
MailModule,
ConvertModule,
DevelopmentModule,
} = (await import('@heyputer/backend')).default;
@@ -108,6 +109,7 @@ const main = async () => {
k.add_module(new PuterExecModule());
k.add_module(new InternetModule());
k.add_module(new MailModule());
k.add_module(new ConvertModule());
if ( process.env.UNSAFE_PUTER_DEV ) {
k.add_module(new DevelopmentModule());
}