Skip to content
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

Chore: Remove outdated instructions from README #300

Merged
merged 6 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ deno install -Arf jsr:@deno/deployctl

## Usage

Before being able to deploy, you need to get a personal access token from the
[Deno Deploy access token page](https://dash.deno.com/account#access-tokens).
Store this token in a `DENO_DEPLOY_TOKEN` environment variable, or pass it to
`deployctl` with the `--token` flag.
The easiest way to get started with `deployctl` is to deploy one of the
examples in the [examples directory](./examples):

```shell
deployctl deploy --project=hello-world ./examples/hello.ts
cd examples/hello-world
deployctl deploy
```

View the help:
Visit the [deployctl docs](https://docs.deno.com/deploy/manual/deployctl) and check out
the help output to learn all you can do with deployctl:

```shell
deployctl -h
Expand Down
1 change: 0 additions & 1 deletion examples/fresh/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"jsxImportSource": "preact"
},
"deploy": {
"project": "example-fresh",
"exclude": [],
"include": [],
"entrypoint": "main.ts"
Expand Down
1 change: 0 additions & 1 deletion examples/hello-world/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"deploy": {
"project": "example-hello-world",
"exclude": [],
"include": [],
"entrypoint": "main.ts"
Expand Down
1 change: 0 additions & 1 deletion examples/link-shortener/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"deploy": {
"project": "example-link-shortener",
"exclude": [],
"include": [],
"entrypoint": "main.ts"
Expand Down
Loading