mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
be5b58432b
closes #7687 - change location from content/storage or content/scheduling to content/adapters/storage or content/adapters/scheduling - i have added a @TODO to https://github.com/TryGhost/Ghost/issues/7421 to check if both adapter types needs an update in the documentation
23 lines
952 B
Markdown
23 lines
952 B
Markdown
# Content / Adapters
|
|
|
|
|
|
An adapter is a way to override a default behaviour in Ghost.
|
|
The default behaviour in Ghost is as following:
|
|
|
|
### LocalFileStorage
|
|
By default Ghost will upload your images to the `content/images` folder.
|
|
The LocalFileStorage is using the file system to read or write images.
|
|
This default adapter can be found in `core/server/storage/LocalFileStorage.js`.
|
|
|
|
### SchedulingDefault
|
|
By default Ghost will schedule your posts using a pure JavaScript solution.
|
|
It doesn't use `cron` or similar.
|
|
This default adapter can be found in `core/server/scheduling/SchedulingDefault.js`.
|
|
|
|
### Custom Adapter
|
|
To override any of the default adapters, you have to add a folder (`content/adapters/storage` or `content/adapters/scheduling`) and copy your adapter to it.
|
|
|
|
Please follow our detailed guides:
|
|
https://github.com/TryGhost/Ghost/wiki/Using-a-custom-storage-module
|
|
https://github.com/TryGhost/Ghost/wiki/Using-a-custom-scheduling-module
|
|
|