The Template Designer viewer and E-Signer viewer work out-of-the-box, but if you want to customize either of these viewers you will need to build them. To build either of these viewers, follow the steps below.
- Install node.js, which you can download from https://nodejs.org/.
- Open a node.js command prompt and change to the directory of the Viewing Client you are building. For example, if you want to build the C# template designer, change to the C# template designer sample folder, as demonstrated below:
cd C:\Prizm\Samples\PCCIS\net\cs\template-designer-sample
|
By default, the C# template designer sample is installed to C:\Prizm\Samples\PCCIS\net\cs\template-designer-sample. |
- Run the following command, which will install the dependencies for building the Viewing Client:
npm install
- To build the Viewing Client, use one of the commands described below:
- To create a single developer build, use the following command:
- To run a watch task, use the following command. This will automatically rebuild the Viewing Client when any files are modified. Note that you will need to keep the command window open while the watch task is running:
- When creating a single build or running a watch task, you can create production builds by adding a "-p" flag to the end of the command, as demonstrated below. Productions builds will output minified source code (both JavaScript and CSS) and will not generate sourcemaps:
- When creating a single developer build or running a watch task, you can get native system notifications when the build is complete by adding an "-n" flag to the end of the command, as demonstrated below:
The build process uses some standard open-sourced tools. To learn more about these resources and how to use them, refer to the following: