Go to file
Guru 0bd36fcdc8
adding railgun case study blog (#44)
* adding railgun case study blog

* updating title

* added cover image and truncated the description
2024-04-26 17:30:38 +05:30
.github migrate the blog template 2023-09-06 00:38:38 +09:00
.husky migrate the blog template 2023-09-06 00:38:38 +09:00
i18n/es chore: update authors 2024-03-12 18:18:14 +09:00
posts adding railgun case study blog (#44) 2024-04-26 17:30:38 +05:30
root-pages chore: update privacy policy 2024-02-19 23:26:30 +09:00
src docs: add test spanish blog post 2024-03-04 03:17:39 +09:00
static adding railgun case study blog (#44) 2024-04-26 17:30:38 +05:30
.gitignore migrate the blog template 2023-09-06 00:38:38 +09:00
.prettierignore migrate the blog template 2023-09-06 00:38:38 +09:00
.prettierrc migrate the blog template 2023-09-06 00:38:38 +09:00
Jenkinsfile feat: use two deploy branches for CI builds 2024-02-20 11:18:33 +01:00
README.md feat: use two deploy branches for CI builds 2024-02-20 11:18:33 +01:00
babel.config.js migrate the blog template 2023-09-06 00:38:38 +09:00
docusaurus.config.js chore: update metadata 2024-04-16 01:31:46 +09:00
package.json chore: upgrade preset version 2023-11-24 15:05:42 +09:00
tsconfig.json migrate the blog template 2023-09-06 00:38:38 +09:00
yarn.lock build(deps): bump loader-utils from 2.0.2 to 2.0.4 2023-11-24 15:33:48 +09:00

README.md

Waku Blog

The template repository for blogs using logos-docusaurus-plugins

How to Run Locally

  1. Clone this repository
$ git clone https://github.com/waku-org/blog.waku.org.git
  1. Install the dependencies:
$ yarn install
  1. Start the website:
$ yarn start
  1. Visit http://localhost:3000/ in your browser

Blog Setup

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.

Adding posts

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.

Customization

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/CD

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.

Change Process

  1. Create a new working branch from develop: git checkout develop; git checkout -b my-changes.
  2. Make your changes, push them to the origin, and open a Pull Request against the develop branch.
  3. After approval, merge the pull request, and verify the changes on the staging server (e.g., https://dev.vac.dev).
  4. 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.