Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I run my C++ code in Heroku?

Tags:

c++

heroku

I have a c++ application that I would like to run online. I was considering using Heroku. How would I go about doing this? Is there an alternative service I should consider isntead?

like image 342
Miss.Saturn Avatar asked Nov 01 '22 13:11

Miss.Saturn


1 Answers

Heroku can run anything.

For C++ there are two ways:

  • a c++ buildpack that does compile the code while pushing
  • through a docker image
like image 53
Denis Cornehl Avatar answered Nov 15 '22 04:11

Denis Cornehl