Running ASP.NET 5 on Cloud 9

Do you find it technically possible to run ASP.NET 5 (vNext) inside Cloud9 ?

I followed the documentation at https://github.com/aspnet/home , everything works fine, but when I run the command:

dnx . kestrel 

mono runs and starts using 100% of the CPU, but the HTTP server is down.

Here is my sample application: https://github.com/davideicardi/aspnet5-on-cloud9

+5
source share
1 answer

Using ASP.NET 5 rc1 I successfully executed ASP.NET on Cloud 9.

Installation Instructions for ASP.NET 5

https://github.com/aspnet/Home/blob/dev/GettingStartedDeb.md

After dnvm and dnx , recovery packages are installed using

 dnu restore 

If this is your first time using HTTP timeout errors (see fooobar.com/questions/992444 / ... ):

 export MONO_THREADS_PER_CPU=2000 dnu restore 

Then start the web server using:

 dnx web 

Note that port 8080 is used by default for cloud 9 ide.

Here is my last github repository: https://github.com/davideicardi/aspnet5-on-cloud9

+1
source

All Articles