A CRM for the Umbraco back-office - form workflow, personalisation and more...
Using NuGet (recommended)
In Visual Studio, open up the Package Manager Console and type the following:
Install-Package PipelineCRM <project name>
Using NuGet locally
If you would rather build PipelineCRM locally and install from the created files, follow the build guide below, followed by running the following in the Package Manager Console (in Visual Studio):
Install-Package PipelineCRM <project name> -source C:\path\to\nupkg\containing\folder
Requirements
npm install gulp -g
)Building
npm install
to get all Gulp dependenciesgulp pack
(this moves DLLs and App_Plugins to the NuGet folder), and runs nuget pack
using the Package.nuspec
fileIf you want to setup this project so you can start editing code in a fast manner, then you can do so using this guide:
gulp pack
command, followed by installing the new pack using the local NuGet install command described in the Installation guide above)npm install
to get all Gulp dependenciesconfig.json
to include paths to your Umbraco websitegulp
Running gulp
will copy App_Plugins and new DLLs to your Umbraco website. This mean that you don't have to keep installing though NuGet, or copying files around your filesystem manually.