Total Pageviews

Saturday, 13 December 2025

microfeed, 一个部署在cloudflare上的轻量级的cms


a lightweight cms self-hosted on cloudflare, for podcasts, blogs, photos, videos, documents, and curated urls.

www.microfeed.org/ 

Report Bug · Request Feature · Email Us Privately

Welcome to microfeed, a lightweight content management system (CMS) self-hosted on Cloudflare. With microfeed, you can easily publish a variety of content such as audios, videos, photos, documents, blog posts, and external URLs to a feed in the form of web, RSS, and JSON. It's the perfect solution for tech-savvy individuals who want to self-host their own CMS without having to run their own servers.

microfeed is built by Listen Notes and is hosted on Cloudflare's Pages, R2, D1, and Zero Trust.

If you have any questions or feedback, please don't hesitate to reach out to us at support@microfeed.org. We'd love to hear from you!

📚 Table of contents

Deploy to Cloudflare Pages CI Email us stability-alpha

⭐️ How it works

Since the 1990s, a significant portion of the web has been powered by feeds. People (and bots) publish items to a feed, and others can subscribe to that feed to receive new content.

microfeed makes it easy for individuals to self-host their own feed on Cloudflare, including but not limited to

microfeed uses Cloudflare Pages to host and run the code, R2 to host and serve media files, D1 to store metadata, and Zero Trust to provide logins to the admin dashboard. Cloudflare provides very generous free usage quotas, making it an affordable solution for personal or small business use. While you will still need to pay for a domain name, hosting microfeed on Cloudflare is essentially free.

With microfeed, you can publish a variety of content such as audios, videos, photos, documents, blog posts, and external URLs to a customizable website, an RSS feed, and a JSON feed. Check out some examples of microfeed in action:

microfeed provides a simple yet powerful admin dashboard that makes it easy to add items to the feed, upload media files, and customize web page styles. If you've used WordPress before, you'll find it familiar.

image-6d056193c81c0b8f5de0503f5af18116

Back to 📚TOC

🚀 Installation

Roughly you'll follow these steps to install a microfeed instance to Cloudflare:

  1. Fork the microfeed repo to your personal (or organizational) GitHub account.
  2. Obtain Cloudflare API tokens and save them as secrets on your forked GitHub repository.
  3. Use the predefined GitHub Action in your forked repository to deploy the code to Cloudflare Pages, using the secrets from step 2.
  4. Make a few clicks on Cloudflare's dashboard to set up custom domains and configure some security settings.
  5. Done. Start publishing!

We understand that not everyone is comfortable with reading documentation, so we've made it as easy as possible to get started with microfeed. However, we'd love to see Cloudflare implement a "Login with Cloudflare" OAuth feature, which would allow for almost one-click deployment of microfeed. In the meantime, we've tried to make the setup process as straightforward as possible for tech-savvy users.

Prerequisites

Back to TOC

Step 1. Fork the microfeed repo to your GitHub

Simply click on https://github.com/microfeed/microfeed/fork to fork the repository.

You may choose to modify the code in your forked repository in the future, but it's likely that you won't need to touch the code at all. Simply fork the repository and keep it synced for future use.

Back to 📚TOC

Step 2. Put some secrets on your forked repo

Go to your forked repo's Settings -> Secrets -> Actions, and create 5 secrets (click for more details). With these secrets in place, you'll be able to use GitHub Actions to deploy your microfeed instance to Cloudflare Pages.

CLOUDFLARE_ACCOUNT_ID

Screenshot 2022-12-17 at 10 31 10 AM
CLOUDFLARE_ACCOUNT_ID

Screenshot 2022-12-17 at 10 31 10 AM
CLOUDFLARE_ACCOUNT_ID

Screenshot 2022-12-17 at 10 31 10 AM
CLOUDFLARE_API_TOKEN

Screenshot 2022-12-04 at 4 30 57 PM

Screenshot 2022-12-04 at 4 31 41 PM

Screenshot 2022-12-04 at 4 34 01 PM
R2_ACCESS_KEY_ID and R2_SECRET_ACCESS_KEY

Screenshot 2022-12-04 at 4 43 58 PM

Screenshot 2023-08-08 at 4 33 55 PM

Screenshot 2022-12-04 at 4 45 35 PM

CLOUDFLARE_PROJECT_NAME

In total, you'll add 5 secrets for GitHub Actions:

Screenshot 2022-12-04 at 4 10 46 PM

Back to 📚TOC

Step 3. Run GitHub Action to deploy code

Go to Actions -> Deploy to Cloudflare Pages and run Workflow

Screenshot 2022-12-04 at 4 11 19 PM

If you see the green checkmark, then the deployment is successful. And you can see a Pages project in your Cloudflare dashboard:

Screenshot 2022-12-04 at 4 55 10 PM

You can access the site via ${CLOUDFLARE_PROJECT_NAME}.pages.dev, for example, https://microfeed-org.pages.dev/

Back to 📚TOC

Step 4. Make a few clicks on Cloudflare dashboard

To manage your microfeed instance, you'll use the admin dashboard at ${CLOUDFLARE_PROJECT_NAME}.pages.dev/admin, for example, https://microfeed-org.pages.dev/admin/ (the admin dashboard needs to be protected by Cloudflare Zero Trust).

Upon accessing the admin dashboard for the first time, you'll complete the setup process by following the checklist:

Screenshot 2022-12-17 at 10 34 05 AM

Back to 📚TOC

Step 5. Done. Start publishing

Once you've completed the setup process, your microfeed instance will be ready to use. You can add, update, or delete items from the admin dashboard.

You can also customize the appearance of the website at Settings / Custom code by editing the raw HTML and CSS:

Screenshot 2022-12-30 at 7 57 45 PM

The HTML code is using mustache.js as a templating language, where you can access to variables from Feed Json or Item Json. For example, on our marketing website microfeed.org's home page (Feed Web), we use variables in the html code from microfeed.org/json/, and on an item's page (Item Web), we use variables from ${item_url}/json.

With the easy access to the json data of a microfeed instance (i.e., Feed Json and Item Json, you can use it as a headless CMS and build your own client apps to display the content.

Back to 📚TOC

Bonus. Update to the latest version of microfeed

We'll continue to add new features and fix bugs in this microfeed repo. You may want to update your forked repo with the new code.

You'll first sync up the code in your forked repo:

Screenshot 2022-12-26 at 7 58 32 AM

Then go to Actions -> Deploy to Cloudflare Pages and run Workflow to deploy the new code.

Back to 📚TOC

💻 FAQs

How can I track podcast / video / image downloads?

Screenshot 2023-01-05 at 7 57 02 AM

Why Cloudflare? Isn't it dangerous to trust a for-profit company?

What if Cloudflare de-platforms my microfeed instance?

Why should I use microfeed?

How to download / backup data from microfeed / Cloudflare?



Back to 📚TOC

💪 Contributions

We welcome contributions to microfeed! If you have an idea for a new feature or have found a bug, please open an issue in the repository. If you'd like to submit a fix or new feature, please create a pull request with a detailed description of your changes.

Run microfeed on local

Pre-requisites: node / npm, yarn, and wrangler

First, create a .vars.toml file in microfeed's root directory (same level as this README.md file) and put 5 secrets in the .vars.toml file (Similar to Step 2. Put some secrets on your forked repo):

# .vars.toml
CLOUDFLARE_PROJECT_NAME = "your-project-org"
CLOUDFLARE_ACCOUNT_ID = "account id"
CLOUDFLARE_API_TOKEN = 'api token'
R2_ACCESS_KEY_ID = "access key"
R2_SECRET_ACCESS_KEY = "secret key"

R2_PUBLIC_BUCKET = "your-r2-bucket-name"

Second, run local dev server:

yarn dev

You should be able to access to a local microfeed instance via http://127.0.0.1:8788/.

How does yarn dev work? Essentially, it concurrently runs two processes: yarn dev:client and yarn dev:edge. The yarn dev:client process launches the webpack DevServer for client-side JavaScript code, while yarn dev:edge starts Wrangler to serve the Pages (edge) code.

from https://github.com/microfeed/microfeed

No comments:

Post a Comment