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
First blog
blog部署日记这是我第一个blog,在AI的帮助下,我成功的部署了,如你所见,blog页面依旧比较原始。相信我,它会慢慢发展起来的。 准备工作部署这个blog需要用到以下软件及网站: [Github]账号(https://github.com/) 使用Github账号登录vercel 下载并安装 Node.js (选 LTS 版本) 下载并安装 Git 属于你的域名,eg.[本blog的域名](https://blog.novabrain.edu kg) 配置好DNS,eg.cloudflare 让我们开始吧1.本地搭建blog[!abstract] CMD或PowerShell执行命令安装hexo 1234567npm install -g hexo-cli# ==== 初始化博客 ====hexo init myblog# "myblog"文件名更改成你的cd myblognpm install 2.安装主题(Butterfly)1[!abstract]换上大名鼎鼎的Butterfly 主题,让你的Blog更美观。 123# === 在博客根目录下执...