The template repository for blogs using logos-docusaurus-plugins
- Clone this repository
$ git clone https://github.com/waku-org/blog.waku.org.git
- Install the dependencies:
$ yarn install
- Start the website:
$ yarn start
- Visit
http://localhost:3000/
in your browser
The blog utilizes the Docusaurus blog plugin configured in docusaurus.config.js
.
[
'@docusaurus/plugin-content-blog',
/** @type {import('@docusaurus/plugin-content-blog').PluginOptions} */
({
id: 'blog',
routeBasePath: '/',
path: 'posts',
blogTitle: 'Waku Blog',
blogSidebarCount: 0,
authorsMapPath: 'authors.yml',
remarkPlugins: [math],
rehypePlugins: [katex],
}),
]
A list of authors can be defined in /posts/authors.yml
.
For additional customization options, please refer to the Docusaurus Blog Plugin documentation.
To publish in the blog, create a .md
or mdx
file within the posts
directory. You can use Frontmatter to add metadata to your markdown file.
You can find instructions for adding additional documentation sections, implementing localization, and managing versioning on the Docusaurus website.
Please note that theme customization is somewhat restricted; for more detailed instructions on customizing your theme, visit the Logos Docusaurus Theme repository.
- CI builds
master
and pushes todeploy-master
branch, which is hosted at https://blog.waku.org/. - CI builds
develop
and pushes todeploy-develop
branch, which is hosted at https://dev-blog.waku.org/.
The hosting is done using Caddy server with Git plugin for handling GitHub webhooks.
Information about deployed build can be also found in /build.json
available on the website.
- Create a new working branch from
develop
:git checkout develop; git checkout -b my-changes
. - Make your changes, push them to the
origin
, and open a Pull Request against thedevelop
branch. - After approval, merge the pull request, and verify the changes on the staging server (e.g., https://dev.vac.dev).
- When ready to promote changes to the live website, rebase the
master
branch on the staging changes:git checkout master; git pull origin master; git rebase origin/develop; git push
.