这两天试了试 netfily 上的 cms 系统,感觉上很好用。以前写一篇文章的方法是在本地自己先写好了,然后 push 到 github 上。中间这个过程可能只会对我一个人比较友好。但是对于其他的用户写起来,可能就比较晦涩。所以我找到了一个更好的方式去代替这种写博客的方式.
(content management for your Git workflow)
因为我使用的是 gatsby 来生成我的网站,netlify 对这一块还比较友善,有直接的文档来告诉我如何配置
https://www.gatsbyjs.org/docs/sourcing-from-netlify-cms/
yarn add netlify-cms-app gatsby-plugin-netlify-cms
然后找到你的 config.js 文件里面添加
module.exports = {
plugins: [`gatsby-plugin-netlify-cms`]
};
按照 netlify 里的文档方法,需要在你的static/admin/config.yml写入配置
backend:
name: test-repo
media_folder: static/assets
public_folder: assets
collections:
- name: blog
label: Blog
folder: blog
create: true
fields:
- { name: path, label: Path }
- { name: date, label: Date, widget: date }
- { name: title, label: Title }
- { name: body, label: Body, widget: markdown }
好了到这里就已经在你的本地上算是配置好了你可以启动一下你的服务器来试一试
然后进入
localhost:8000/admin/
就可以看见后台的管理 ui 界面
https://www.netlify.com/docs/authentication-providers/#using-an-authentication-provider 这篇文档已经把配置过程写的很详细了但是还是告诉一下大家一些需要注意的
https://github.com/settings/developers
这是在 github 上注册一个新的 OAuth application 的地址
切记必须要在Authorization callback URL 中添加以下地址
https://api.netlify.com/auth/done
其他的你可以填入你想要填入的
这时等待你的 netlify 部署更新你的项目,然后在线上地址上访问 admin 地址即可。你添加的文章会在你的 github 地址上创建一个 blog 文件然后在里面存入你所添加的文章.