配置免费图床教程
配置免费图床教程 本文主要介绍如何配置免费图床,以图床为基础的博客文章可以大大提高文章的阅读体验。 首先打开 该项目仓库(点击跳转) 点击 “Fork”(如果你认可此项目 可以点击旁边的 starts 以支持作者) Cloudflare 开通 R2 业务并创建存储桶 Bucket 创建 Pages 并绑定到 GitHub 仓库配置好 KV,需要的变量等 配置完成后,访问 Pages 地址,输入图片地址即可上传图片。 最终效果 参考如下文章:https://www.yunsen2025.top/archives/265
Hexo部署简易教程
前言Hexo 是一个基于 Node.js 的静态博客框架,它可以帮助你快速地创建和发布博客。本文将介绍如何使用 Hexo 部署博客到 GitHub Pages。 步骤安装 Node.js, GitNode.js 下载地址:https://nodejs.org/en Git 下载地址:https://git-scm.com/downloads 安装 Hexo首先,你需要安装 Hexo。你可以使用 npm 来安装 Hexo: 1npm install -g hexo-cli 初始化 Hexo在你的博客目录下,执行以下命令来初始化 Hexo: 12hexo init HexoBlogcd HexoBlog 安装依赖安装 Hexo 的依赖: 1npm install 生成静态文件执行以下命令来生成静态文件: 1hexo g 部署到 GitHub Pages在你的博客目录下,执行以下命令来部署到 GitHub Pages: 12npm install hexo-deployer-git --savehexo deploy 配置 Hexo在你的博客目录下,打开...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment