You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to deploy app_bar/main.ts and app_foo/main.ts as separate Deno Deploy projects. Currently, the easiest way to do this is running the following two commands respectively:
This works, but the problem is we can't save these in the root deno.json for future deploys, because "deploy" section now expects a single object and doesn't allow multiple settings.
This would allow deployctl to support deploys for different projects, like deployctl deploy --project project-foo without the need to pass other settings such as exclude, include, and entrypoint.
The text was updated successfully, but these errors were encountered:
Let's say we have a workspace where three workspace members reside:
We want to deploy
app_bar/main.ts
andapp_foo/main.ts
as separate Deno Deploy projects. Currently, the easiest way to do this is running the following two commands respectively:deployctl deploy --project project-foo --entrypoint app_foo/main.ts
deployctl deploy --project project-foo --entrypoint app_bar/main.ts
This works, but the problem is we can't save these in the root
deno.json
for future deploys, because"deploy"
section now expects a single object and doesn't allow multiple settings.It would be probably better to have deno.json support for multiple settings. Something like:
This would allow deployctl to support deploys for different projects, like
deployctl deploy --project project-foo
without the need to pass other settings such as exclude, include, and entrypoint.The text was updated successfully, but these errors were encountered: