This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| [{ | |
| "operation": "findObjects", | |
| "parameters": { | |
| "objectType": "job", | |
| "computed": true, | |
| "select": [{ | |
| "propertyName": "ec_deploymentType" | |
| }, { | |
| "propertyName": "ec_smartDeployOption" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| [{ | |
| "operation": "findObjects", | |
| "parameters": { | |
| "objectType": "job", | |
| "computed": true, | |
| "select": [{ | |
| "propertyName": "ec_deploymentType" | |
| }, { | |
| "propertyName": "ec_smartDeployOption" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| new webpack.DefinePlugin({ | |
| "urlPrefix": process.env.NODE_ENV === 'production' ? "https://get.mavo.io/" : "http://localhost:8000/mavo/dist/" | |
| }) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "responses": [{ | |
| "formalParameter": [{ | |
| "formalParameterId": "07db079b-72d3-11e7-98e9-0050568f29b0", | |
| "formalParameterName": "allwrite", | |
| "createTime": "2017-07-27T13:53:48.843Z", | |
| "defaultValue": "0", | |
| "description": "p4 client option allwrite", | |
| "expansionDeferred": "0", | |
| "lastModifiedBy": "admin", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "responses": [{ | |
| "objectId": ["dashboard-c6e5439a-6877-11e7-ba6b-0050568f29b0"], | |
| "object": [{ | |
| "objectId": "dashboard-c6e5439a-6877-11e7-ba6b-0050568f29b0", | |
| "dashboard": { | |
| "dashboardId": "c6e5439a-6877-11e7-ba6b-0050568f29b0", | |
| "dashboardName": "Release Command Center", | |
| "createTime": "2017-07-14T09:35:25.046Z", | |
| "description": "Release Command Center", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| COMMANDER_SESSION_ID = HCYWUMDAROBG4BI1 | |
| API_BATCH_MODE = serial | |
| [[{ | |
| "operation": "modifyFormalParameter", | |
| "parameters": { | |
| "formalParameterName": "appVirtPath", | |
| "description": "Virtual path of the application, i.e: '/myApplication'. (Required)", | |
| "expansionDeferred": "0", | |
| "label": "Application Virtual Path", | |
| "required": "1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title>Report for test run</title> | |
| <style> | |
| body, html { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| .table-fill { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rules: [ | |
| { | |
| test: /\.jsx$/, | |
| exclude: /node_modules|app\/assets/, | |
| enforce: "pre", | |
| loader: "eslint-loader", | |
| options: { | |
| failOnWarning: false, | |
| failOnError: true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module: { | |
| rules: [ | |
| //Shim | |
| { | |
| test: /handlebars/, | |
| use: [ | |
| 'imports-loader?this=>window', | |
| 'exports-loader?Handlebars' | |
| ] | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| resolveLoader: { | |
| moduleExtensions: ["-loader"] | |
| }, | |
| resolve: { | |
| modules: [ | |
| path.join(__dirname, 'dev/app/'), // baseUrl | |
| path.join(__dirname, 'node_modules') | |
| ], |