CognosExt / grunt-cognos-ext-upload

Grunt plugin that uploads zipped extension files during development
GNU General Public License v3.0
1 stars 0 forks source link

grunt-cognos-ext-upload

CircleCI Greenkeeper badge

Use Grunt to upload your IBM Cognos Analytics custom extensions directly from your local machine into your cognos installation without opening your browser.

Getting Started

This plugin requires Grunt >=0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-cognos-ext-upload --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks("grunt-documentation");

Usage

Table of Contents

gruntUpload

Grunt Cognos Extension Upload

In your project's Gruntfile, add a section named cognos_ext_upload to the data object passed into grunt.initConfig().

Parameters

Examples

grunt.initConfig({
  documentation: {
      default: {
          options: {
              name: 'My_Theme',
              user: "admin",
              password: "secret",
              namespace: "MyNameSpace",
              url: "https://localhost/ibmcognos",
              type: "themes",
              zipfile: "dist/mytheme.zip",
              timeout: 30000,
              ignoreInvalidCertificates: true,
              debug: false
          }
      },
  }
});