@tryghost/mg-ghost-api
v0.4.19
Published
Export content from an existing Ghost installation using the [Admin API](https://ghost.org/docs/api/v2/admin/), and generate a `zip` file you can import into a Ghost installation.
Downloads
54
Maintainers
Keywords
Readme
Migrate Ghost API
Export content from an existing Ghost installation using the Admin API, and generate a zip
file you can import into a Ghost installation.
Install
To install the CLI, which is required for the Usage commands below:
npm install --global @tryghost/migrate
To use this package in your own project:
npm install @tryghost/mg-ghost-api --save
or
yarn add @tryghost/mg-ghost-api
Usage
To run a Ghost API migration, the required command is:
migrate ghost --url https://example.com --apikey 1234abcd
It's possible to pass more options, in order to achieve a better migration file for Ghost:
--url
(required)- Ghost API URL
- string - default:
null
--apikey
(required)- Ghost API key
- string - default:
null
-V
--verbose
- bool - default:
false
- Show verbose output
- bool - default:
--zip
- bool - default:
true
- Create a zip file
- bool - default:
-s
--scrape
- Configure scraping tasks
- string - default:
all
- Choices:
all
,img
,web
,media
,files
,none
--sizeLimit
- number - default:
false
- Media files larger than this size (defined in MB [i.e.
5
]) will be flagged as oversize
- number - default:
-I
--info
- bool - default:
false
- Show initalisation info only
- bool - default:
-b
--batch
- number - default:
0
- Batch number to run (defaults to running all)
- number - default:
-l
--limit
- number - default:
15
- Number of items fetched in a batch i.e. batch size
- number - default:
--posts
- bool - default:
true
- Import posts (set to false to skip)
- bool - default:
--postFilter
- string - default:
null
- A string of post filters, as defined in the Ghost Admin API
- string - default:
--pages
- bool - default:
true
- Import pages (set to false to skip)
- bool - default:
--pageFilter
- string - default:
null
- A string of page filters, as defined in the Ghost Admin API
- string - default:
--cache
- Persist local cache after migration is complete (Only if
--zip
istrue
) - bool - default:
true
- Persist local cache after migration is complete (Only if
A more complex migration command could look like this:
migrate ghost --url https://example.com --apikey 1234abcd --batch 5 --limit 10 --postFilter 'tag:[news, press]' --pages false --verbose
This will get the first 50 posts with the tag news
or press
, in 5 batches of 10 posts, exclude pages, and show all available output in the console.
See the Filter documentation for more info.
Develop
This is a mono repository, managed with lerna.
Follow the instructions for the top-level repo.
git clone
this repo &cd
into it as usual- Run
yarn
to install top-level dependencies.
Run
To run a local development copy, cd
into this directory, and replace migrate
with yarn dev
, like so:
yarn dev ghost --url https://example.com --apikey 1234abcd
Test
yarn lint
run just eslintyarn test
run lint and tests
Copyright & License
Copyright (c) 2013-2023 Ghost Foundation - Released under the MIT license.