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

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

To authenticate with the server, you can use the access token on your {{ url_for("profile", name=current_user.name) }} profile page. If you feel that the token is abused by a third party, you can revoke it and generate a new one.

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 generated in the first step.

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 %}