Unstable builds from the official dev branch on GitHub.
# Start a container with the ASP.NET 5 image
> turbo run microsoft/aspnet5-dev,git/git
# Start a container with the ASP.NET 5 image
# on machine without .NET installed
> turbo run microsoft/aspnet5-dev,microsoft/dotnet,git/git
# Start a container with the ASP.NET 5 image
# on machine without .NET and Powershell 3.0/4.0 installed
> turbo run microsoft/aspnet5-dev,microsoft/dotnet,microsoft/powershell,git/git
# In the container, clone a sample project from GitHub
(123) > git clone http://github.com/aspnet/Home.git
# Change folder to the sample project
(123) > cd Home\sample\latest\HelloMvc
# Restore the packages required by that sample
(123) C:\Home\sample\latest\HelloMvc> dnu restore
# Run the web app
(123) C:\Home\sample\latest\HelloMvc> dnx . web
Now open your browser to http://localhost:5001
If you already have another site running on port 5001 and you would like to have the traffic running on another port, you can simply use the --route-add
parameter in the run
command.
# Redirect traffic on port 5001 to 5002
turbo run --route-add=5002:5001 microsoft/aspnet5-dev
You can stop the ASP.NET 5 server by pressing Enter in the ASP.NET 5 cmd window.
For more help, please run 'dnx -h' in the virtual command prompt.
No release notes
This repository does not have an EULA
Actions
Go to TurboScript