Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 690 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 690 Bytes

heroku-deno-getting-started

Buildpack

https://github.com/chibat/heroku-buildpack-deno

Running Locally

Make sure you have Deno and the Heroku CLI installed.

$ git clone https://github.com/chibat/heroku-deno-getting-started.git
$ cd heroku-deno-getting-started
$ deno run --allow-net=:8080 app.ts --port=8080

Your app should now be running on localhost:8080.

Deploying to Heroku

$ heroku create --buildpack https://github.com/chibat/heroku-buildpack-deno.git
$ git push heroku master
$ heroku open

more examples