-
Notifications
You must be signed in to change notification settings - Fork 16
Full Atlas Export
Brendan Billingsley edited this page Oct 24, 2024
·
1 revision
The Nunaliit backend can export a tarball package that a user can download. This is BETA functionality currently as we gather feedback on how well it works.
Exporting requires the following steps:
- Create export.json for ALL schemas. Make sure media files are in export
"select": "nunaliit_attachments.files",
"type": "json"
}
- Setup install.properties adding
export.complete.user=<username>
and sensitive.propertiesexport.complete.password=<password>
- Create an export by using curl or other tool that can send a POST request:
curl -X POST https://<username>:<password><server URL>/servlet/export/complete/export
- List files:
curl https://<server URL>/servlet/export/complete
- Save a file to disk:
curl -O http://<server URL>/servlet/export/complete/<export package file>