mirror of
https://github.com/okxlin/appstore.git
synced 2025-09-14 13:56:55 +08:00
feat:调整arcadia
This commit is contained in:
parent
9549e53d3f
commit
e011c231ee
@ -1,10 +0,0 @@
|
|||||||
additionalProperties:
|
|
||||||
formFields:
|
|
||||||
- default: 5678
|
|
||||||
edit: true
|
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
|
||||||
labelEn: Port
|
|
||||||
labelZh: 端口
|
|
||||||
required: true
|
|
||||||
rule: paramPort
|
|
||||||
type: number
|
|
@ -3,6 +3,14 @@
|
|||||||
Arcadia 一站式代码运维平台主要面向于脚本语言编程,适用于中小型团队与个人的开发与运维环境。
|
Arcadia 一站式代码运维平台主要面向于脚本语言编程,适用于中小型团队与个人的开发与运维环境。
|
||||||
除了代码运维外 Arcadia 还是一个强大的定时任务运维平台,并且有着完善的文件系统和底层CLI命令设计。
|
除了代码运维外 Arcadia 还是一个强大的定时任务运维平台,并且有着完善的文件系统和底层CLI命令设计。
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
- 账户密码
|
||||||
|
```
|
||||||
|
username: useradmin
|
||||||
|
password: passwd
|
||||||
|
```
|
||||||
|
|
||||||
## 主要功能:
|
## 主要功能:
|
||||||
|
|
||||||
- **专业代码编辑器**:采用 VS Code 核心组件之一的摩纳哥编辑器,并且经过了高度定制,提供众多语言解释器支持,代码高亮效果与桌面客户端一致,还支持标签页多开。
|
- **专业代码编辑器**:采用 VS Code 核心组件之一的摩纳哥编辑器,并且经过了高度定制,提供众多语言解释器支持,代码高亮效果与桌面客户端一致,还支持标签页多开。
|
||||||
@ -13,3 +21,4 @@ Arcadia 一站式代码运维平台主要面向于脚本语言编程,适用于
|
|||||||
- **代码内容对比**:集成摩纳哥专业差异编辑器,可任意选择对比文件。
|
- **代码内容对比**:集成摩纳哥专业差异编辑器,可任意选择对比文件。
|
||||||
- **代码在线调试**:专业的调试工具,实施反馈运行日志,支持配置调试环境。
|
- **代码在线调试**:专业的调试工具,实施反馈运行日志,支持配置调试环境。
|
||||||
- **内置终端命令行**:项目集成了基于 Xterm.js 的 WEB 终端工具,实时、流畅且支持标签页多开,日常使用无需手动连接至服务器。
|
- **内置终端命令行**:项目集成了基于 Xterm.js 的 WEB 终端工具,实时、流畅且支持标签页多开,日常使用无需手动连接至服务器。
|
||||||
|
|
||||||
|
3
apps/arcadia/beta/.env.sample
Normal file
3
apps/arcadia/beta/.env.sample
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
CONTAINER_NAME="arcadia"
|
||||||
|
HOSTNAME="arcadia"
|
||||||
|
PANEL_APP_PORT_HTTP=40310
|
17
apps/arcadia/beta/data.yml
Normal file
17
apps/arcadia/beta/data.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40310"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "arcadia"
|
||||||
|
edit: true
|
||||||
|
envKey: HOSTNAME
|
||||||
|
labelEn: Hostname
|
||||||
|
labelZh: 主机名
|
||||||
|
required: true
|
||||||
|
type: text
|
@ -1,8 +1,9 @@
|
|||||||
services:
|
services:
|
||||||
arcadia:
|
arcadia:
|
||||||
image: supermanito/arcadia:beta
|
image: "supermanito/arcadia:beta"
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
hostname: arcadia
|
hostname: ${HOSTNAME}
|
||||||
|
tty: true
|
||||||
networks:
|
networks:
|
||||||
- 1panel-network
|
- 1panel-network
|
||||||
volumes:
|
volumes:
|
||||||
@ -18,4 +19,4 @@ services:
|
|||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
networks:
|
networks:
|
||||||
1panel-network:
|
1panel-network:
|
||||||
external: true
|
external: true
|
@ -1,19 +1,19 @@
|
|||||||
name: Arcadia
|
name: Arcadia
|
||||||
tags:
|
tags:
|
||||||
- 实用工具
|
- 开发工具
|
||||||
title: 一站式代码运维平台
|
title: 一站式代码运维平台
|
||||||
description: 一站式代码运维平台
|
description: 一站式代码运维平台
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
key: arcadia
|
key: arcadia
|
||||||
name: Arcadia
|
name: Arcadia
|
||||||
tags:
|
tags:
|
||||||
- Tool
|
- DevTool
|
||||||
shortDescZh: 一站式代码运维平台
|
shortDescZh: 一站式代码运维平台
|
||||||
shortDescEn: One-stop code operation and maintenance platform
|
shortDescEn: One-stop code operation and maintenance platform
|
||||||
type: tool
|
type: tool
|
||||||
crossVersionUpdate: false
|
crossVersionUpdate: true
|
||||||
limit: 0
|
limit: 0
|
||||||
recommend: 100
|
recommend: 0
|
||||||
website: https://arcadia.cool
|
website: https://arcadia.cool
|
||||||
github: https://github.com/SuperManito/Arcadia
|
github: https://github.com/SuperManito/Arcadia
|
||||||
document: https://arcadia.cool/docs
|
document: https://arcadia.cool/docs
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 3.7 KiB |
Loading…
Reference in New Issue
Block a user