Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
syumai committed May 18, 2019
1 parent 9248a35 commit a18861e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ app(
```

```console
deno run --allow-net --allow-read index.ts # You can use --allow-all / -A too.
deno run --allow-net --allow-read index.ts # Or simply: deno run -A index.ts
# App runs on localhost:8080

curl http://localhost:8080/hello
Expand Down Expand Up @@ -103,7 +103,7 @@ setTimeout(() => {
## Flags

```console
deno index.ts -p 8000 # or --port=8000
deno run -A index.ts -p 8000 # or --port=8000
# App runs on localhost:8000
```

Expand Down

0 comments on commit a18861e

Please sign in to comment.