网上太多老旧版本,本教程一直更新,小白首推valine,一步搞定
[TOC]
next更新
1 2 3 4
| cd hexo # 进入你的blog文件根部 git clone https://github.com/theme-next/hexo-theme-next themes/next sudo rm -rf ./themes/next/.git # 删除.git为了主题能同步到github sudo rm -rf ./themes/next/.gitignore # 删除.gitignore为了主题完整同步到github
|
leancloud获取AppID和AppKey
注册
创建应用
配置
把下面代码复制到_config.next.yml开启valine
1 2 3 4 5 6 7 8 9 10
| # 显示文章阅读次数、评论次数、valine评论系统 # 可以看到,这是基于leancloud,需要先注册leancloud帐号,创建应用,进入应用的设置/应用Keys里获取AppID和AppKey。 # https://leancloud.cn/ valine: enable: true appid: asdfasdfa-gzGzoHsz # Your leancloud application appid appkey: MUbUrcI8NjqasdfasitdsmLBj7 # Your leancloud application appkey placeholder: 来都来了,不撩一句嘛~,留言记得在上面留下【邮箱】,方便收到回复通知~ # Comment box placeholder language: zh-cn # Language, available values: en, zh-cn visitor: true # 文章阅读统计
|
End