Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A simple web application using Deno and Dinatra to respond to a request. To be used as part of the Fly tutorials on how to deploy Deno applications to Fly's global application platform.

* Run flyctl launch
* Run flyctl deploy
* Run flyctl open to browse your new app
* Run `flyctl launch`
* Run `flyctl deploy`
* Run `flyctl open` to browse your new app

7 changes: 2 additions & 5 deletions main.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import {
app,
get,
post,
redirect,
contentType,
} from "https://denopkg.com/syumai/dinatra/mod.ts";
get
} from "https://denopkg.com/syumai/dinatra@master/mod.ts";

const greeting = "<h1>Hello From Deno on Fly!</h1>";

Expand Down