From 2e6886d2c34d4185ec7a8581320d6bcb3847c0fe Mon Sep 17 00:00:00 2001 From: samtaggart Date: Sat, 11 Oct 2025 13:59:24 +0200 Subject: [PATCH 1/3] Update metadata title and tagline --- docusaurus.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 48b494b..3b92a9f 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -16,8 +16,8 @@ const mermaidTheme = { /** @type {import('@docusaurus/types').Config} */ const config = { - title: 'TFT Minting Transition Plan', - tagline: 'Community Feedback & Discussion', + title: 'TF Grid 4 Economics Community E-Book', + tagline: 'Proposal: For Community Discussion & Feedback', favicon: 'img/favicon.png', // Set the production url of your site here From f9a5d8086ac793f5f593a0531a44ba1c6e241ab3 Mon Sep 17 00:00:00 2001 From: mik-tf Date: Thu, 16 Oct 2025 07:47:45 -0400 Subject: [PATCH 2/3] docs: Update README with new repository URL and remove deployment info --- README.md | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 085a0ea..7b19255 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Community e-book for the ThreeFold Token (TFT) minting transition plan. -**Live Site**: https://plan.threefold.pro +**Live Site**: https://threefold.info/economics ## Overview @@ -24,8 +24,8 @@ This repository contains the documentation for the TFT Minting Transition Plan, ```bash # Clone the repository -git clone https://github.com/mik-tf/minting_plan.git -cd minting_plan +git clone https://git.ourworld.tf/tfgrid/docs_tfgrid_economics +cd docs_tfgrid_economics # Install dependencies pnpm install @@ -94,8 +94,6 @@ minting_plan/ git push origin main ``` -6. GitHub Actions automatically deploys to https://plan.threefold.pro - ### Content Guidelines - Write clear, concise documentation @@ -104,16 +102,6 @@ minting_plan/ - Test builds before pushing - See [Content Updates Guide](./docs/ops/content-updates.md) for details -## Deployment - -This site automatically deploys to GitHub Pages via GitHub Actions when you push to the `main` branch. - -- **Domain**: plan.threefold.pro -- **Branch**: gh-pages (auto-generated) -- **Build Time**: ~2-3 minutes - -See [Deployment Guide](./docs/ops/deployment.md) for full details. - ## Community Feedback We welcome community feedback on this plan through: @@ -133,8 +121,6 @@ Full documentation available at: - [Docusaurus 3](https://docusaurus.io/) - Documentation framework - [React 18](https://react.dev/) - UI library -- [GitHub Pages](https://pages.github.com/) - Hosting -- [GitHub Actions](https://github.com/features/actions) - CI/CD ## License From 869b335f0737f513fa625e0259cdc1a0ddc6ae78 Mon Sep 17 00:00:00 2001 From: mik-tf Date: Thu, 16 Oct 2025 07:48:40 -0400 Subject: [PATCH 3/3] chore: Remove GitHub Pages deployment workflow --- .github/workflows/deploy.yml | 39 ------------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 2a89372..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - main - workflow_dispatch: - -permissions: - contents: write - -jobs: - deploy: - name: Deploy to GitHub Pages - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - - - name: Install dependencies - run: npm install - - - name: Build website - run: npm run build - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./build - user_name: github-actions[bot] - user_email: github-actions[bot]@users.noreply.github.com