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
使用hexo+github完成个博客搭建部署(一)
使用hexo+github完成个人博客部署搭建(一)
本篇文章文章参考了Fomalhaut大佬的Hexo博客搭建基础教程(一)
本人只是个小白,这篇文章是个简单的过程描述文章,也是个测试文章
1 环境与工具准备
操作系统:Windows10
Node
Git
Hexo
文本编辑器(强烈推荐VSCODE)
GitHub 帐号
一个域名(我都还没有搞域名)
云服务器(一定选稳定的,可以备份的)
我们需要一些辅助的工具来完成部署,但是你使用终端也可以完成部署的啦
2.Node的安装1.打开Node官网,下载和自己系统相配的Node的安装程序就可以啦,注意版本如果你不怕折腾可以高一点,建议还是不要选太高的版本下载地址:https://nodejs.org/en/download/
2.下载后安装安装的位置可以保持到c盘,你也可以部署到其他位置,但是可能有些奇怪的问题具体教程百度(不过坑比较多就是了)!
3.安装完成后,检查是否安装成功。在键盘按下win + R键,输入CMD,然后回车,打开CMD窗口,执行node -v命令,看到版本信息,则说明安装成功。
4.修改npm源。(如果你拥有VP ...