{% extends "layout.html" %} {% block body %}

Hello {{ user.name }}, follow these steps to start adding datasets from a remote machine.

On the working machine, change to the folder of your dataset and type

nova init --token youraccesstoken --remote http://localhost:5000
replacing youraccesstoken with the token found on your profile page.

You can now work with your data as usual. To synchronize the data with the remote machine go to the folder and

nova push

To prevent further modifications and allow new datasets be derived from it, you have to close it first. You can do that either from the webpage by clicking on the green lock or running

nova close
from the working directory of the dataset.

{% endblock %}