This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Description
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
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)