🚀 Ship it
How to deploy a Deno app
command line
deno install -A jsr:@deno/deployctl --global
deployctl deploy
{
"tasks": {
"dev": "deno serve --watch --unstable-kv --env -A src/main.ts",
"test": "deno test tests/",
"deploy": "deployctl deploy --project YOUR_PROJECT"
},
"deploy": {
"entrypoint": "src/main.ts"
}
}