Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy .Net application to heroku [closed]

I do not see much help when it comes to deploying .Net app to Heroku.

So, how to deploy .Net application to Heroku?

like image 841
Nick Kahn Avatar asked Mar 17 '15 13:03

Nick Kahn


People also ask

Can we deploy .NET application on Heroku?

Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud. Currently, Heroku supports languages Ruby, Java, PHP, Python, Node, Go, Scala and Clojure but unfortunately not . Net or . Net Core.

Does Heroku support asp net?

At the moment, Heroku does not have an officially supported buildpack for ASP.NET Core. That is ok, you can provide the URL for a . NET Core buildpack instead. Paste https://github.com/heroku-softtrends/heroku-buildpack-dotnetcore.git in the input field and click Save changes.

How do I deploy an existing app to Heroku?

To deploy your app to Heroku, use the git push command to push the code from your local repository's main branch to your heroku remote. For example: $ git push heroku main Initializing repository, done.


1 Answers

This is demo app on asp.net 5 beta7 https://github.com/jincod/AspNet5DemoApp. Using buildpack forked from heroku/dotnet-buildpack.

heroku buildpacks:set https://github.com/jincod/dotnetcore-buildpack git push heroku master 
like image 50
jincod Avatar answered Sep 17 '22 14:09

jincod