https://github.com/kusstar/decel
A CLI for Deno Deploy
https://github.com/kusstar/decel
cli deno deploy vercel
Last synced: 2 months ago
JSON representation
A CLI for Deno Deploy
- Host: GitHub
- URL: https://github.com/kusstar/decel
- Owner: KusStar
- License: mit
- Created: 2022-07-29T08:26:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T09:03:49.000Z (almost 4 years ago)
- Last Synced: 2025-06-15T00:30:48.343Z (about 1 year ago)
- Topics: cli, deno, deploy, vercel
- Language: TypeScript
- Homepage: https://deno.land/x/decel
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# decel
[](https://asciinema.org/a/iTSgJOYEP6cp8Hd8A8cFE9l8u)
A CLI for [Deno Deploy](https://dash.deno.com/)
Better UX feels like [vercel/cli](https://github.com/vercel/vercel)
## Guide
### Prerequisite
1. Install `decel` with Deno
```shell
deno install -A --unstable --no-check https://deno.land/x/decel@v1.0.2/decel.ts
```
2. Get a Access Token from [Deno Deploy Dash](https://dash.deno.com/account#access-tokens)
3. Export the token to env `export DENO_DEPLOY_TOKEN=xxx` or use with `decel --token=xxx`
### Usage
```shell
$ decel -h
decel - a CLI for Deno Deploy
Usage:
deno [options]
Commands:
ls | list - list all projects in Deno Deploy
Options:
-h, --help Show help message
--token Deno Deploy Access Token
--prod Deploy in production mode
--static Deploy with static files
[ls]
--show-dev Show dev domain in ls table
Examples:
- Deploy the current directory to Deno Deploy
$ decel
- Deploy the current directory with a custom name
$ decel --name my-project
- Deploy the current directory with entry file
$ decel ./app.ts
```
## LICENSE
[MIT](./LICENSE)