-
Notifications
You must be signed in to change notification settings - Fork 813
Open
Labels
Milestone
Description
// Aspire TypeScript AppHost
// For more information, see: https://aspire.dev
import { createBuilder } from './.modules/aspire.js';
const builder = await createBuilder();
console.log('Hello World');
// Add your resources here, for example:
// const redis = await builder.addContainer("cache", "redis:latest");
// const postgres = await builder.addPostgres("db");
await builder.build().run();Hello World does not show up anywhere outside of the debug logs for the apphost.
Reactions are currently unavailable