Skip to content

Commit

Permalink
dev: add email module to run-selfhosted
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Feb 3, 2025
1 parent cfa3fde commit 57231d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/run-selfhosted.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ const main = async () => {
PuterAIModule,
PuterExecModule,
InternetModule,
DevelopmentModule
MailModule,
DevelopmentModule,
} = (await import('@heyputer/backend')).default;

const k = new Kernel({
Expand All @@ -103,9 +104,10 @@ const main = async () => {
k.add_module(new SelfHostedModule());
k.add_module(new BroadcastModule());
k.add_module(new TestDriversModule());
k.add_module(new InternetModule());
k.add_module(new PuterAIModule());
k.add_module(new PuterExecModule());
k.add_module(new InternetModule());
k.add_module(new MailModule());
if ( process.env.UNSAFE_PUTER_DEV ) {
k.add_module(new DevelopmentModule());
}
Expand Down

0 comments on commit 57231d3

Please sign in to comment.