Skip to content

A cli tool to create a starter IPX application

Notifications You must be signed in to change notification settings

mmitiche/create-ipx-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IPX Starter Project

A CLI tool to customize a starter IPX application.

This documentation covers how to use this project to customize an IPX through the source code. You should create an IPX before using this project; if you have not yet done so, see Deploying an IPX Interface.

Getting Started

  1. Fork the repo and clone your local copy.
  2. Install dependencies by running npm i.

Configuration

You must add your IPX configuration inside the config.json file located at the root of your IPX project (e.g., /create-ipx-app/config.json) by filling in the values.

  • organizationId : the id of the Coveo organization in which your IPX resides.

    You can find this id by navigating to the Administration Console and clicking the Settings gear in the upper-right corner. Under the Organization tab, select the Information menu. You'll see the Organization ID field.

  • isHipaaOrg: is the organization hosted on Coveo's HIPAA compliant environment. Defaults to false.

    Your organization is HIPAA compliant if it is hosted on the https://platformhipaa.cloud.coveo.com administration platform.

  • pageId: the id of your IPX.

    You can find this id by navigating to the In-Product Experiences page of the Administration Console. The pageId is the section of the Script URL between .../pages/ and /inappwidget/.... For example, if the script URL were https://platform.cloud.coveo.com/rest/organizations/examplecomtemporaryczokqt72c/pages/a6dcedcf-2f37-4b3a-9f3c-c8e484df4f79/inappwidget/loader, the pageId would be a6dcedcf-2f37-4b3a-9f3c-c8e484df4f79.

  • pageName: the name of your IPX.

  • apiKey : An API key created in the Coveo Platform following this documentation. You must grant this key the Edit Search Pages and Execute Queries privileges.

Pull the code for your IPX

You can pull the code for your IPX from the Coveo platform through our API by running npm run pull to populate the ipx.html, ipx.css and ipx.js files in the src/ folder with the source code of your IPX.

All code found in the body of the IPX (referenced in the Code View of the IPX interface editor) will be parsed into the source files. Scripts or styles located in the header will not be pulled into the source files.

Note: This will overwrite the contents of the files in the src/ folder.

Customize Your IPX

You can customize your IPX by editing the files locating under the src folder (e.g., /create-ipx-app/src/).

ipx.html

This file contains the code required to display an IPX. It already includes all the basic functionalities to deliver a great content discovery experience.

This code is based on the Coveo JavaScript Search Framework, which includes a wide variety of UI components. You can integrate those components or add your own code.

ipx.css and ipx.js

These files can be used to further customize your IPX integration.

Try It Out

From your terminal, in the root directory of your IPX project, run the command npm start. It will start a node server and will load your newly created IPX on http://localhost:8080/.

If you have properly configured config.json, your IPX will already be linked to your Coveo organization and will return documents based on the executed queries and your query pipeline configuration.

Publish Your IPX

Once you are happy with your customized IPX, you can push the new code to the Coveo platform through our API by running npm run publish in the terminal in the root directory of your IPX project.

Now, your customized HTML, CSS, and JavaScript files will be used in your cloud-deployed IPX.

Log a Tampermonkey Userscript for easy testing

Once published, if you wish to generate a Userscript to preview your IPX in your browser with a tool like Tampermonkey, run npm run log:tampermonkey-script -- site to log a Userscript that will match on all pages for site.

More

Using this starter project, you can now manage multiple instances of IPX, each independently managed through version control. This lets you use as many different IPX as you'd like, bind them to different pipelines, and give them a different look and feel.

Reference: Commands

  • npm start: Starts the dev server.
  • npm run publish: Synchronizes your IPX with the cloud.
  • npm run pull: Pull the code for your IPX from the cloud.
  • npm run create:config: Creates a config.json file.
  • npm run log:ipx-loader-script: Log the script snippet used to load your IPX.
  • npm run log:tampermonkey-script: Log a Userscript that can be used with tampermonkey to preview your IPX in your browser.

About

A cli tool to create a starter IPX application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 72.2%
  • HTML 27.5%
  • CSS 0.3%