Basic syntax:
$ node pull

Arguments:
  --config <path> (optional)

An alternative place to store the token is a private '.token' file added to the .gitignore list.
A handy way to store the script settings is a shared 'tanker.config.json' file.
Example:
{
    "fetch_options": {
        "project-id": "fancy-tanker-project",
        "status": "unapproved",
        "safe": 1,
        "no-comments": 1
    },
    "locales": [
        "en", "ru"
    ],
    "output": {
        "en": "locales/en.json",
        "ru": "locales/ru.json"
    },
    "extra_resources": {
        "en": [
            "locales/countries.en.json",
            "locales/languages.en.json"
        ],
        "ru": [
            "locales/countries.ru.json",
            "locales/languages.ru.json"
        ]
    }
}