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",
"executableScriptName" : "sampleApp1.m",
@ -10,14 +17,12 @@
} ],
"inputParameters" : [ {
"type" : "INTEGER",
"name" : "multiplicator"
"name" : "Multiplicator"
} ],
"outputs" : [ {
"dataType" : "image_data",
"fileFormat" : "PNG",
"fileName" : "vectorPlot.png",
"isReturnedValue" : false
"fileName" : "multipliedVec.png"
} ],
"requiredTools" : [ "octave" ],
"requiredComputationResources" : { }
"requiredTools" : [ "octave" ]
}