DEV Community

Discussion on: Deploy your Deno apps to Heroku

 
ms314006 profile image
Clark

Sorry! It is my fault, I missed that you already had --allow-net!

But I think maybe you can change the sequence to:

web: deno run --allow-net=:${PORT} --allow-read --allow-write --allow-plugin --unstable -c index.ts tsconfig.json --port=${PORT}

You can try again. I have seen some problems occur in sequence.

Thread Thread
 
wobsoriano profile image
Robert

tsconfig.json should appear after -c though.