A CRM for the Umbraco back-office - form workflow, personalisation and more...
- At least Umbraco 7
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
- Node installed
- NPM installed
- Gulp installed globally (
npm install gulp -g
) - NuGet CLI installed
Building
- Clone this repository to your local system using git
- Open the solution with Visual Studio and build
- Open a terminal in the root of the cloned folder
- Type
npm install
to get all Gulp dependencies - Type
gulp pack
(this moves DLLs and App_Plugins to the NuGet folder), and runsnuget pack
using thePackage.nuspec
file
If you want to setup this project so you can start editing code in a fast manner, then you can do so using this guide:
- Install the package to your Umbraco website using NuGet (I recommend following the Build guide above and creating a fresh NuGet package using the
gulp pack
command, followed by installing the new pack using the local NuGet install command described in the Installation guide above) - Clone this repository to your local filesystem
- Open a terminal in the root of the cloned folder
- Type
npm install
to get all Gulp dependencies - Edit the
config.json
to include paths to your Umbraco website - Run
gulp
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.