From 426eda739a5cdcd08313b85cf11112ace2e0be89 Mon Sep 17 00:00:00 2001 From: Merango Date: Thu, 15 May 2025 20:13:07 +0000 Subject: [PATCH 1/3] empty commit From 27642b9e02552a9e47259ce9465058ef2d1a091d Mon Sep 17 00:00:00 2001 From: Merango Date: Thu, 15 May 2025 20:14:04 +0000 Subject: [PATCH 2/3] Create Prometheus-generated README file --- README_Prometheus.md | 82 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 README_Prometheus.md diff --git a/README_Prometheus.md b/README_Prometheus.md new file mode 100644 index 0000000..3a0dc36 --- /dev/null +++ b/README_Prometheus.md @@ -0,0 +1,82 @@ +# Prometheus: Add README for blog + +## Project Overview + +Koii is a decentralized content publishing platform that empowers creators to manage and monetize their blog content through a community-driven approach. The platform provides a robust blogging infrastructure built on web3 principles, enabling users to create, share, and distribute blog posts with enhanced control and transparency. + +### Key Features + +- **Decentralized Publishing**: Create and publish blog posts using a markdown-based system that supports flexible content management +- **Community-Driven Content**: Leverage a transparent publishing workflow that allows community interaction and contribution +- **Web3 Integration**: Publish content with metadata and tagging capabilities that align with decentralized web standards +- **Flexible Deployment**: Easy setup and deployment of blog content with support for various hosting platforms + +### Core Benefits + +- Eliminates centralized content control +- Provides creators with direct ownership of their content +- Enables seamless content distribution across decentralized networks +- Supports open and collaborative content creation processes + +## Getting Started, Installation, and Setup + +### Prerequisites + +- Ruby (version 2.7 or higher) +- Bundler +- Git + +### Local Development Setup + +1. Clone the repository: + ```bash + git clone https://github.com/koii-network/koii.X.git + cd koii.X + ``` + +2. Install dependencies: + ```bash + bundle install + ``` + +3. Start the local development server: + ```bash + bundle exec jekyll serve + ``` + + The site will be available at `http://localhost:4000`. + +### Writing and Publishing Blog Posts + +#### Create a New Post + +1. Navigate to the `_posts` directory +2. Create a new markdown file with the naming convention: `YYYY-MM-DD-post-title.md` +3. Add front matter metadata at the top of the file: + ```markdown + --- + layout: post + title: "Your Post Title" + categories: [Announcement] + image: assets/images/blog/your-cover-image.png + --- + ``` + +4. Write your post content in markdown + +#### Publishing Process + +1. Commit your changes to a new branch +2. Create a merge request targeting the `master` branch +3. Get the merge request reviewed +4. Once approved, merge to publish the post + +### Deployment + +The site is automatically deployed using Vercel when changes are merged to the `master` branch. + +### Troubleshooting + +- Ensure all dependencies are installed correctly +- Check Jekyll and Ruby versions compatibility +- Verify image paths in blog posts \ No newline at end of file From 7ec01d545ed4ddc45d5a0652866b382070a02eea Mon Sep 17 00:00:00 2001 From: Merango Date: Thu, 15 May 2025 20:14:47 +0000 Subject: [PATCH 3/3] Create Prometheus-generated README file --- README_Prometheus.md | 61 ++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 33 deletions(-) diff --git a/README_Prometheus.md b/README_Prometheus.md index 3a0dc36..98feaf1 100644 --- a/README_Prometheus.md +++ b/README_Prometheus.md @@ -2,21 +2,23 @@ ## Project Overview -Koii is a decentralized content publishing platform that empowers creators to manage and monetize their blog content through a community-driven approach. The platform provides a robust blogging infrastructure built on web3 principles, enabling users to create, share, and distribute blog posts with enhanced control and transparency. +Koii's Create Blog is a Jekyll-based blogging platform designed to facilitate easy content creation and management for the Koii Network community. This repository provides a streamlined workflow for creating, previewing, and publishing blog posts with a focus on decentralized content sharing. ### Key Features -- **Decentralized Publishing**: Create and publish blog posts using a markdown-based system that supports flexible content management -- **Community-Driven Content**: Leverage a transparent publishing workflow that allows community interaction and contribution -- **Web3 Integration**: Publish content with metadata and tagging capabilities that align with decentralized web standards -- **Flexible Deployment**: Easy setup and deployment of blog content with support for various hosting platforms +- Simple markdown-based blog post creation +- Automatic post categorization +- Flexible post metadata configuration +- Vercel integration for easy preview and deployment +- Seamless GitHub/GitLab workflow for content management -### Core Benefits +### Purpose -- Eliminates centralized content control -- Provides creators with direct ownership of their content -- Enables seamless content distribution across decentralized networks -- Supports open and collaborative content creation processes +The platform enables contributors to: +- Quickly create and publish blog posts +- Maintain a consistent content structure +- Share updates, announcements, and insights about the Koii Network ecosystem +- Leverage a user-friendly publishing process with clear guidelines ## Getting Started, Installation, and Setup @@ -30,8 +32,8 @@ Koii is a decentralized content publishing platform that empowers creators to ma 1. Clone the repository: ```bash - git clone https://github.com/koii-network/koii.X.git - cd koii.X + git clone https://github.com/koii-network/koii-x.git + cd koii-x ``` 2. Install dependencies: @@ -39,44 +41,37 @@ Koii is a decentralized content publishing platform that empowers creators to ma bundle install ``` -3. Start the local development server: +### Running the Blog Locally + +1. Start the local development server: ```bash bundle exec jekyll serve ``` - The site will be available at `http://localhost:4000`. +2. Open your browser and navigate to `http://localhost:4000` -### Writing and Publishing Blog Posts +### Creating a New Blog Post -#### Create a New Post +1. Create a new markdown file in the `_posts` directory with the naming convention `YYYY-MM-DD-post-title.md` -1. Navigate to the `_posts` directory -2. Create a new markdown file with the naming convention: `YYYY-MM-DD-post-title.md` -3. Add front matter metadata at the top of the file: +2. Use the following front matter template for your post: ```markdown --- layout: post title: "Your Post Title" + subtitle: "Optional Subtitle" categories: [Announcement] image: assets/images/blog/your-cover-image.png --- ``` -4. Write your post content in markdown - -#### Publishing Process - -1. Commit your changes to a new branch -2. Create a merge request targeting the `master` branch -3. Get the merge request reviewed -4. Once approved, merge to publish the post - ### Deployment -The site is automatically deployed using Vercel when changes are merged to the `master` branch. +The blog is automatically deployed via Vercel when changes are merged into the `master` branch. -### Troubleshooting +### Contributing -- Ensure all dependencies are installed correctly -- Check Jekyll and Ruby versions compatibility -- Verify image paths in blog posts \ No newline at end of file +1. Create a new branch from `draft` +2. Write your post +3. Create a merge request targeting the `master` branch +4. Have it reviewed and merged by the team \ No newline at end of file