rubydownloadnitrousio

Does anyone know how to download a project from nitrous.io?


I made an ruby web application on nitrous.io, the tool is very nice and it helped a lot but now I want to download ther project in my computer and I didn't found any option to do that...


Solution

  • You can download and upload projects by any of the following options:

    1. Utilize Nitrous Desktop to Sync your files locally.

    2. Upload your project to Github, and pull the project from there. Here is a guide on adding the SSH key to Github if needed.

    3. Upload the content via SCP. To do this, you will need to add an SSH Key to your account.

    Next, run this command on your local machine, replacing {PORT} with the port # assigned to your Nitrous.IO box, and also changing usw1 with the proper region found in the SSH URI of your boxes page.

    To Upload:

    scp -P{PORT} -r path/to/yourFolder action@usw1-2.nitrousbox.com:~/workspace
    

    To Download:

    scp -P{PORT} -r action@usw1-2.nitrousbox.com:~/workspace path/to/yourLocalFolder