The easiest way to install the Falco template is by running the following command in your terminal:
> dotnet new install "Falco.Template::*"This will pull and install the latest Falco.Template NuGet package into your .NET environment and make it available to subsequent dotnet new commands.
Whenever there is a new version of the Falco template you can update it by re-running the instructions from the installation.
You can also explicitly set the version when installing the template:
> dotnet new install "Falco.Template::5.0.3"After the template has been installed you can create a new Falco web application by simply running dotnet new falco in your terminal:
> dotnet new falco -o /path/to/app/MyFalcoAp
> dotnet run --project /path/to/app/MyFalcoAppThis will generate a basic ASP.NET web application with Falco installed and activate, demonstrating some basic routing and output techniques.
To experiment with the template locally, from source:
> cd src/Templates
> dotnet pack --configuration Release
> dotnet new install /bin/Release/Falco.Template.5.0.3.nupkgTo uninstall the local version:
> dotnet new uninstall Falco.TemplatesThere's an issue for that.
Licensed under Apache License 2.0.