| ▲ | boundlessdreamz 5 hours ago | |
Is there a way to copy files to/from the sprite? Couldn't see an option for that in the CLI | ||
| ▲ | tptacek 5 hours ago | parent | next [-] | |
There's an FS API that shipped yesterday:
It'll get CLI support very soon.But I've just been using magic-wormhole for this. | ||
| ▲ | aostiles 3 hours ago | parent | prev | next [-] | |
I was trying to copy a directory and used: Pull from sprite to local: sprite exec -s my-sprite sh -c "tar -czf - /home/sprite/<my_dir>" | tar -xzf - -C ./ Push from local to sprite: COPYFILE_DISABLE=1 tar -czf - <my_dir> | sprite exec -s my-sprite sh -c "tar -xzf - -C /home/sprite/" | ||
| ▲ | MildlySerious 3 hours ago | parent | prev | next [-] | |
I would love to just mount a directory via SFTP, so I can use my IDE alongside the far-away Claude. That would put this in the realm of daily use for development. | ||
| ▲ | mrkurt 4 hours ago | parent | prev [-] | |
`cat file.txt | sprite exec -s <name> bash -c "cat > ~/file.txt"` is my go to. | ||