用hugo快速创建一个博客
背景
博客是技术人员日常记录的一个载体,开源的博客系统有很多,我最终选择了hugo。
安装hugo
直接看官方文档:https://gohugo.io/installation/
创建博客
命令
1hugo new site rushui.net -f yaml
2cd rushui.net
3git init
4git submodule add https://github.com/hugo-theme/rs.git themes/rs
5echo "theme: rs" >> config.yaml
6hugo server
保留目录
blog中所有目录都是空的,所以只保留用到的目录和文件即可
1content #内容目录
2static #静态文件目录
3themes #主题目录
4config.yaml #配置文件
创建内容
1hugo new posts/blog-quickstart.md
posts/blog-quickstart.md 加入以下内容
1---
2title: "用hugo快速创建一个博客"
3date: 2023-03-04T17:53:26+08:00
4tags : ["如水"]
5---
6一个简单的go程序
7```go
8package main
9import "fmt"
10func main(){
11 fmt.Println("hello world")
12}
13``` #去除后面空格
启动服务
1hugo server -D --poll 200ms
打开 http://localhost:1313/ 即可看到刚才加的内容
发布日期:2023-03-04 17:53 字数:76 用时
标签云
alpine(1) api网关(1) async(1) await(1) centos(4) cli(1) client-go(1) debug(1) docker(10) docker-compose(1) dockerfile(1) embed(1) es6(1) etcd(1) etcdctl(1) freemesh(2) git(6) go(5) go-zeus(5) goland(2) golang(7) grafana(2) grpc(5) grpcurl(1) homebrew(1) homedir(1) http(2) hugo(1) java(2) javascript(3) job(1) js(1) json(1) k8s(16) k8s部署指南(1) kubebuilder(1) kubectl(4) kubernetes(1) linux(2) localecompare(1) lombok(1) metrics(2) mock(1) mysql(1) npm(1) nsenter(1) nvm(1) pnpm(2) pprof(1) prettier(1) prometheus(2) protobuf3(1) protoc(1) qiankun(1) request(1) scss(1) servicemesh(1) spring(1) springcloud->freemesh(1) ssh(2) systemctl(1) tcpdump(1) typescript(2) vite(2) vscode(2) vue(8) vue-admin(2) vue3(1) webssh(1) xtermjs(1) xxl-job(1) yarn(1) zookeeper(1) 云原生(4) 云原生框架(1) 介绍(1) 单体架构->freemesh(1) 单元化(1) 博客(1) 压缩(1) 可观测(1) 后台管理系统(1) 命名规范(1) 多云多活(1) 如水网(1) 安全(1) 安装(1) 容器(2) 开发联调神器(1) 微前端(1) 微服务(2) 微服务架构->freemesh(1) 微服务框架(1) 快速开始(1) 控制面(1) 数据面(1) 文集(2) 服务发现(1) 服务网格(1) 流量泳道(1) 流量管理(1) 监控告警(1) 端口映射(1) 证书(1) 负载均衡(1) 配置(1)