Hi, I'm trying to create script on my machine. According to https://paperspace.github.io/paperspace-node/scripts.html#.create I've created sample code ``` javascript paperspace.scripts.create({ scriptName: 'Run docker at start', scriptFile: 'startup.sh', scriptDescription: 'A startup script', // optional isEnabled: true, // optional runOnce: false, // optional machineId: machineId, // optional }, function(err, res) { console.log(res); }); ``` and what I'm getting is ``` { error: { name: 'Error', status: 404, message: 'script not uploded - temporary' } } ``` Could you explain this, please? Of course other requests are working ( e.g. I can start and stop machines using paperspace-node)
Hi,
I'm trying to create script on my machine. According to https://paperspace.github.io/paperspace-node/scripts.html#.create I've created sample code
and what I'm getting is
Could you explain this, please?
Of course other requests are working ( e.g. I can start and stop machines using paperspace-node)