1.0.0 • Published 3 years ago

datocms-tools v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

datocms-tools

Utilities for DatoCMS.

Install globally with npm:

npm add -g datocms-tools

Install globally with yarn:

yarn global add datocms-tools

datocms-dump

Dumps all project data as JSON files.

$ DATOCMS_API_KEY={{your DatoCMS read-only API key}} datocms-dump

Creates the following:

  • itemTypes.json
  • items.json
  • site.json
  • uploads.json

datocms-get-uploads

Downloads all the project uploads to a local directory.

$ DATOCMS_API_KEY={{your DatoCMS read-only API key}} datocms-get-uploads

If you want logging, pass the VERBOSE environment:

$ DATOCMS_API_KEY={{your DatoCMS read-only API key}} VERBOSE=1 datocms-get-uploads

The download is progressive, so if files are already present, they will not be re-downloaded.

If you want to forse re-download, supply the OVERWRITE_EXISTING environment:

$ DATOCMS_API_KEY={{your DatoCMS read-only API key}} OVERWRITE_EXISTING=1 datocms-get-uploads {{output path}}