2022-10-15 12:42:49 +00:00
|
|
|
|
# fullstack web
|
|
|
|
|
本项目是 fullstack.club 的官网,主要是一些导航和在线工具。
|
|
|
|
|
|
|
|
|
|
- 采用 hugo 部署方式,方便高效。
|
|
|
|
|
- 主要的配置信息都集成到了 config.toml,一键完成各种自定义的配置。
|
|
|
|
|
- 导航的各个信息都集成在 data/webstack.yml 文件中,方便后续增删改动。
|
|
|
|
|
```
|
|
|
|
|
- taxonomy: 科研办公
|
|
|
|
|
icon: fas fa-flask fa-lg
|
|
|
|
|
list:
|
|
|
|
|
- term: 生物信息
|
|
|
|
|
links:
|
|
|
|
|
- title: NCBI
|
|
|
|
|
logo: ncbi.jpg
|
|
|
|
|
url: https://www.ncbi.nlm.nih.gov/
|
|
|
|
|
description: National Center for Biotechnology Information.
|
|
|
|
|
- title: Bioconda
|
|
|
|
|
logo: bioconda.jpg
|
|
|
|
|
url: https://anaconda.org/bioconda/
|
|
|
|
|
description: "Bioconda :: Anaconda.org."
|
|
|
|
|
- term: 云服务器
|
|
|
|
|
links:
|
|
|
|
|
- title: 阿里云
|
|
|
|
|
logo: 阿里云.jpg
|
|
|
|
|
url: https://www.aliyun.com/
|
|
|
|
|
description: 上云就上阿里云。
|
|
|
|
|
- title: 腾讯云
|
|
|
|
|
logo: 腾讯云.jpg
|
|
|
|
|
url: https://cloud.tencent.com/
|
|
|
|
|
description: 产业智变,云启未来。
|
|
|
|
|
```
|
|
|
|
|
- 做了手机电脑自适应以及夜间模式。
|
|
|
|
|
- 增加了搜索功能,以及下拉的热词选项(基于百度 API)。
|
|
|
|
|
- 增加了一言、和风天气的 API。
|
|
|
|
|
|
|
|
|
|
|
2022-10-18 09:14:32 +00:00
|
|
|
|
## hugo 安装
|
|
|
|
|
文档:
|
|
|
|
|
https://gohugo.io/getting-started/
|
|
|
|
|
安装包:
|
|
|
|
|
https://github.com/gohugoio/hugo/releases
|
2022-10-15 12:42:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 本地启动
|
|
|
|
|
`cd hugo`
|
|
|
|
|
`hugo server`
|
|
|
|
|
|
|
|
|
|
## 发布
|