forked from Anduin2017/HowToCook
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/Anduin2017/HowToCook: Avoid google font file. [ci skip] Automatic file changes/fix Add docker support. [ci skip] Automatic file changes/fix Feat/add pineapple coffee cocktail (Anduin2017#1313)
- Loading branch information
Showing
8 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
stages: | ||
- deploy | ||
|
||
deploy_docker: | ||
stage: deploy | ||
script: | ||
- docker build . -t hub.aiursoft.cn/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME:latest | ||
- docker push hub.aiursoft.cn/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ============================ | ||
# Prepare Node Environment | ||
FROM hub.aiursoft.cn/node:21-alpine as node-env | ||
WORKDIR /app | ||
COPY . . | ||
RUN node ./.github/readme-generate.js | ||
|
||
# ============================ | ||
# Prepare Build Environment | ||
FROM hub.aiursoft.cn/python:3.11 as python-env | ||
WORKDIR /app | ||
COPY --from=node-env /app . | ||
RUN pip install -r requirements.txt | ||
RUN mkdocs build --strict | ||
|
||
# ============================ | ||
# Prepare Runtime Environment | ||
FROM hub.aiursoft.cn/aiursoft/static | ||
COPY --from=python-env /app/site /data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# 菠萝咖啡特调的做法 | ||
|
||
![示例菜成品](./菠萝咖啡特调.png) | ||
|
||
菠萝咖啡特调是非常适合家庭出品的饮料,酸甜可口。 | ||
|
||
## 必备原料和工具 | ||
|
||
- 咖啡液(推荐浓缩或者冷萃) | ||
- 菠萝汁(鲜榨或者 nfc) | ||
- 冰块 | ||
- 苏打水 | ||
- 奶油 | ||
- 牛奶 | ||
- 糖 | ||
- 海盐(可选) | ||
- 朗姆酒 (可选) | ||
|
||
## 计算 | ||
|
||
每次制作前需要确定计划做几份。一份正好够 1 个人吃。 | ||
|
||
每份: | ||
|
||
- 咖啡液 30ml | ||
- 菠萝汁 60ml | ||
- 冰块 50g | ||
- 苏打水 30ml | ||
- 奶油 30ml | ||
- 牛奶 10ml | ||
- 糖 8g | ||
- 海盐 0.5g | ||
- 朗姆酒 5ml | ||
|
||
## 操作 | ||
|
||
- 杯子里依次加入冰块,咖啡液,菠萝汁和苏打水 | ||
- 奶油加糖打发至湿性发泡,加入朗姆酒和牛奶均匀只有流动性 | ||
- 在第一部混合液上方倒入奶油 | ||
- 奶油顶面撒上海盐 | ||
|
||
## 附加内容 | ||
|
||
- 咖啡液建议选用花果风味,浓缩可以用中烘豆,冷萃可以用普通水洗或者日晒 | ||
- 倒入奶油时,高度尽量放低,让奶油能均匀漂浮在饮料表面形成奶盖 | ||
- 用新鲜的咖啡液和菠萝汁能大大提升整体风味口感 | ||
|
||
如果您遵循本指南的制作流程而发现有问题或可以改进的流程,请提出 Issue 或 Pull request 。 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters