mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:添加cook到列表
This commit is contained in:
parent
4a195121cc
commit
a348377d08
2
apps/cook/1.2.2/.env.sample
Normal file
2
apps/cook/1.2.2/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="cook"
|
||||||
|
PANEL_APP_PORT_HTTP="40228"
|
10
apps/cook/1.2.2/data.yml
Normal file
10
apps/cook/1.2.2/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 40228
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
17
apps/cook/1.2.2/docker-compose.yml
Normal file
17
apps/cook/1.2.2/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
cook:
|
||||||
|
image: yunyoujun/cook:1.2.2
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:80"
|
||||||
|
tty: true
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
26
apps/cook/README.md
Normal file
26
apps/cook/README.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Cook
|
||||||
|
|
||||||
|
> 好的,今天我们来做菜 🥬
|
||||||
|
> Note: This is primarily a Chinese project and we do not intend to translate to English due to the fact that all the ingredients we are familiar with are in Chinese.
|
||||||
|
|
||||||
|
## 版本
|
||||||
|
|
||||||
|
[](https://github.com/YunYouJun/cook/actions/workflows/release.yml)
|
||||||
|
|
||||||
|
### 网页版本
|
||||||
|
|
||||||
|
- 网站链接:[cook.yunyoujun.cn](https://cook.yunyoujun.cn)
|
||||||
|
- 备用:[cook.yyj.moe](https://cook.yyj.moe)
|
||||||
|
- 开发版:[cook.yunle.app](https://cook.yunle.app)
|
||||||
|
|
||||||
|
## 说明
|
||||||
|
|
||||||
|
本项目初衷是方便特殊时期隔离在家而材料有限的小伙伴,因此菜谱材料会尽量限制在特定范围内。
|
||||||
|
|
||||||
|
更多可参见 [来做菜 | 关于](https://cook.yunyoujun.cn/about)。
|
||||||
|
|
||||||
|
欢迎反馈更多菜谱数据:
|
||||||
|
|
||||||
|
- 相关链接
|
||||||
|
- [居家菜谱投稿](https://docs.qq.com/form/page/DWk9GWW9oTmlXZU9V)
|
||||||
|
- [反馈建议分享-兔小巢](https://support.qq.com/products/507827)
|
19
apps/cook/data.yml
Normal file
19
apps/cook/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Cook
|
||||||
|
tags:
|
||||||
|
- 实用工具
|
||||||
|
title: 好的,今天我们来做菜!
|
||||||
|
description: 好的,今天我们来做菜!
|
||||||
|
additionalProperties:
|
||||||
|
key: cook
|
||||||
|
name: Cook
|
||||||
|
tags:
|
||||||
|
- Tool
|
||||||
|
shortDescZh: 好的,今天我们来做菜!
|
||||||
|
shortDescEn: OK, Let's Cook!
|
||||||
|
type: tool
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
recommend: 0
|
||||||
|
website: https://cook.yunyoujun.cn
|
||||||
|
github: https://github.com/YunYouJun/cook
|
||||||
|
document: https://github.com/YunYouJun/cook
|
2
apps/cook/latest/.env.sample
Normal file
2
apps/cook/latest/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="cook"
|
||||||
|
PANEL_APP_PORT_HTTP="40228"
|
10
apps/cook/latest/data.yml
Normal file
10
apps/cook/latest/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 40228
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
17
apps/cook/latest/docker-compose.yml
Normal file
17
apps/cook/latest/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
cook:
|
||||||
|
image: yunyoujun/cook:latest
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:80"
|
||||||
|
tty: true
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
BIN
apps/cook/logo.png
Normal file
BIN
apps/cook/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Loading…
Reference in New Issue
Block a user