Blog extension
This extension provides basic features for blog implementation:
- Posts
- Pages
- Categories
- Authors
Available integrations
Contentful
Build captivating experiences that stand out with the intelligent composable content platform.
Wordpress
Build and grow your website with the best way to WordPress.
Usage
To add this extension to your Falcon-based app install it in the server directory:
# installs blog extension
npm install --save @deity/falcon-blog-extension
# installs blog extension
yarn add @deity/falcon-blog-extension
and add extension and module (in this example it's WordPress module) to the configuration of the server:
{
"extensions": {
// enable blog extension by adding it under "extensions"
"blog": {
"package": "@deity/falcon-blog-extension",
"module": "foo-module", // must match an API Provider name set in "apis" object below
"config": {
}
}
},
"modules": {
"wordpress": { // must match "extension.module" from blog extension configuration
"package": "@deity/falcon-wordpress-module",
"config": {
"host": "your-wordpress-host.com"
}
}
}
}