8606ea22a2
no issue v1.0.0 is no longer the standard in the docs, so I updated all of the URLs containing it with v1 Note: I tried squashing commits, but failed. I'll try again in the future with throwaway changes Secondary Note: I tested most of the URLs listed and got no 404s!
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/adapters/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/adapters/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://docs.ghost.org/v1/docs/using-a-custom-storage-module
|
|
https://docs.ghost.org/v1/docs/using-a-custom-scheduling-module
|