You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo"deb http://download.mono-project.com/repo/debian wheezy main"| sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get install unzip curl mono-complete automake libtool
curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src
cd /usr/local/src/libuv-1.4.2
sudo sh autogen.sh
sudo ./configure
sudo make
sudo make install
sudo rm -rf /usr/local/src/libuv-1.4.2 &&cd~/
sudo ldconfig
curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh &&source~/.dnx/dnvm/dnvm.sh
source /home/andres/.dnx/dnvm/dnvm.sh
cd /home/shared/Proyectos/
git clone https://github.com/MakingSense/aspnet-hypermedia-api-seed
cd aspnet-hypermedia-api-seed/
gedit ~/.config/NuGet/NuGet.config #se agregan los sources, no estoy seguro de si es necesario
dnvm upgrade
ls /home/andres/.dnx #Borro la crapeta vacía del framework asi la puedo volver a bajar
dnvm install 1.0.0-beta7
cd src
cd MakingSense.AspNet.HypermediaApi.Seed/
dnu restore
dnx kestrel
#see in the browser http://localhost:5000/
See https://github.com/aspnet/Home/ and https://github.com/aspnet/Home/blob/dev/GettingStartedDeb.md
Quick and dirty terminal history: