Updated appDefinition.json with output file name and copyright

This commit is contained in:
parent d1fa502bf8
commit c5b23c4e19

View File

@ -1,3 +1,10 @@
// -----------------
// Copyright © 2022 ACK Cyfronet AGH, Poland.
// -----------------
//
// Sample application definition created for demonstration of creating custom applications functionality
// See also https://docs.cyfronet.pl/display/ISDOC/Creating+Custom+Applications
//
{ {
"scriptLanguage" : "OCTAVE", "scriptLanguage" : "OCTAVE",
"executableScriptName" : "sampleApp1.m", "executableScriptName" : "sampleApp1.m",
@ -10,14 +17,12 @@
} ], } ],
"inputParameters" : [ { "inputParameters" : [ {
"type" : "INTEGER", "type" : "INTEGER",
"name" : "multiplicator" "name" : "Multiplicator"
} ], } ],
"outputs" : [ { "outputs" : [ {
"dataType" : "image_data", "dataType" : "image_data",
"fileFormat" : "PNG", "fileFormat" : "PNG",
"fileName" : "vectorPlot.png", "fileName" : "multipliedVec.png"
"isReturnedValue" : false
} ], } ],
"requiredTools" : [ "octave" ], "requiredTools" : [ "octave" ]
"requiredComputationResources" : { }
} }