-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Deno hosting documentation #1896
base: main
Are you sure you want to change the base?
Add Deno hosting documentation #1896
Conversation
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Hi @brian-guerrero - This is a great start, thank you! The other thing that I noticed is that this is missing from the intergrations-overview.md page, there's a section that shows the Available integrations and part of that is a subsection with the Community toolkit integrations. |
- Add Deno tasks and package installation support
```csharp | ||
var builder = DistributedApplication.CreateBuilder(args); | ||
|
||
builder.AddDenoApp("oak-demo", "main.ts", permissionFlags: ["-E", "--allow-net"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know Deno very well, so maybe this is idiomatic as is, but as a newcomer I'd find --allow-env
more helpful than -E
.
They're equivalent according to the docs: https://docs.deno.com/runtime/fundamentals/security/#environment-variables
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think of me showing both the long form and short form flags?
Summary
Adds documentation for .NET Aspire Community Toolkit Deno package.
Fixes #1889
Internal previews