Processed apps directory via GitHub Actions
This commit is contained in:
36
appstore/mx-space/8.4.0/.env
Normal file
36
appstore/mx-space/8.4.0/.env
Normal file
@@ -0,0 +1,36 @@
|
||||
# 数据持久化路径 [必填]
|
||||
MX_SERVER_ROOT_PATH=/home/mx-space
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=2333
|
||||
|
||||
# JWT 密钥 [必填]
|
||||
JWT_SECRET=
|
||||
|
||||
# 允许的访问来源 [必填]
|
||||
ALLOWED_ORIGINS=,localhost
|
||||
|
||||
# 数据库 主机地址 (MongoDB) [必填]
|
||||
DB_HOST=127.0.0.1
|
||||
|
||||
# 数据库 端口 (MongoDB) [必填]
|
||||
DB_PORT=27017
|
||||
|
||||
# 数据库 名称 (MongoDB) [必填]
|
||||
DB_COLLECTION_NAME=mx-space
|
||||
|
||||
# 数据库 用户名 (MongoDB)
|
||||
DB_USER=mx-space
|
||||
|
||||
# 数据库 密码 (MongoDB)
|
||||
DB_PASSWORD=mx-space
|
||||
|
||||
# Redis 主机 [必填]
|
||||
REDIS_HOST=127.0.0.1
|
||||
|
||||
# Redis 端口 [必填]
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Redis 密码
|
||||
REDIS_PASSWORD=
|
||||
|
||||
92
appstore/mx-space/8.4.0/data.yml
Normal file
92
appstore/mx-space/8.4.0/data.yml
Normal file
@@ -0,0 +1,92 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/mx-space"
|
||||
edit: true
|
||||
envKey: MX_SERVER_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 2333
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: JWT_SECRET
|
||||
labelZh: JWT 密钥
|
||||
labelEn: JWT Secret
|
||||
required: true
|
||||
type: text
|
||||
- default: ",localhost"
|
||||
edit: true
|
||||
envKey: ALLOWED_ORIGINS
|
||||
labelZh: 允许的访问来源
|
||||
labelEn: 允许的访问来源
|
||||
required: true
|
||||
type: text
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: DB_HOST
|
||||
labelZh: 数据库 主机地址 (MongoDB)
|
||||
labelEn: Database Host (MongoDB)
|
||||
required: true
|
||||
type: text
|
||||
- default: 27017
|
||||
edit: true
|
||||
envKey: DB_PORT
|
||||
labelZh: 数据库 端口 (MongoDB)
|
||||
labelEn: Database Port (MongoDB)
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "mx-space"
|
||||
edit: true
|
||||
envKey: DB_COLLECTION_NAME
|
||||
labelZh: 数据库 名称 (MongoDB)
|
||||
labelEn: Database Name (MongoDB)
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: "mx-space"
|
||||
edit: true
|
||||
envKey: DB_USER
|
||||
labelZh: 数据库 用户名 (MongoDB)
|
||||
labelEn: Database Username (MongoDB)
|
||||
required: false
|
||||
type: text
|
||||
- default: "mx-space"
|
||||
edit: true
|
||||
envKey: DB_PASSWORD
|
||||
labelZh: 数据库 密码 (MongoDB)
|
||||
labelEn: Database Password (MongoDB)
|
||||
random: true
|
||||
required: false
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: REDIS_HOST
|
||||
labelZh: Redis 主机
|
||||
labelEn: Redis Host
|
||||
required: true
|
||||
type: text
|
||||
- default: 6379
|
||||
edit: true
|
||||
envKey: REDIS_PORT
|
||||
labelZh: Redis 端口
|
||||
labelEn: Redis Port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: REDIS_PASSWORD
|
||||
labelZh: Redis 密码
|
||||
labelEn: Redis Password
|
||||
required: false
|
||||
type: password
|
||||
25
appstore/mx-space/8.4.0/docker-compose.yml
Normal file
25
appstore/mx-space/8.4.0/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
mx-server:
|
||||
container_name: mx-space
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- PORT=2333
|
||||
- DEMO=false
|
||||
- NODE_ENV=production
|
||||
- ENCRYPT_ENABLE=false
|
||||
image: innei/mx-server:8.4.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:2333
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MX_SERVER_ROOT_PATH}/data:/root/.mx-space
|
||||
17
appstore/mx-space/8.4.0/scripts/init.sh
Normal file
17
appstore/mx-space/8.4.0/scripts/init.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
17
appstore/mx-space/8.4.0/scripts/upgrade.sh
Normal file
17
appstore/mx-space/8.4.0/scripts/upgrade.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
37
appstore/mx-space/README.md
Normal file
37
appstore/mx-space/README.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# MixSpace
|
||||
|
||||
Mix Space 是一个现代化的前后端分离个人空间解决方案,也可以作为个人博客使用。
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 特性
|
||||
|
||||
### 基于 Next.js
|
||||
|
||||
内置代码分割和图片优化,服务器端渲染(SSR)支持,性能强劲,速度快,SEO 友好。
|
||||
|
||||
### 前端轻量快速
|
||||
|
||||
其前端主题 Shiro 在 LightHouse 中表现优秀,Performance 和 Best practice 指数均大于 90%。
|
||||
|
||||
### UI 现代化
|
||||
|
||||
前端后端用户界面设计现代化,简洁而不简单,让你的体验更加流畅。
|
||||
|
||||
### Markdown 语法支持
|
||||
|
||||
Mix Space 原生支持 Markdown 语法,也支持自定义 Markdown 内语法,您可以使用自定义语法来丰富您的内容。
|
||||
|
||||
### 后台云函数配置
|
||||
|
||||
无限扩展、无限可能,通过 Core 内置的云函数配置功能实现歌单解析,追番列表等功能,还有更多。
|
||||
|
||||
### 动态化配置前端
|
||||
|
||||
你可以在后台设置前端的配置,比如网站名称,网站描述,网站图标,以及一些其他配置。
|
||||
|
||||
---
|
||||
|
||||

|
||||
14
appstore/mx-space/data.yml
Normal file
14
appstore/mx-space/data.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: mx-space
|
||||
name: MixSpace
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 前后端分离个人空间解决方案
|
||||
shortDescEn: A frontend-backend separation personal space solution
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://mx-space.js.org/
|
||||
github: https://github.com/mx-space/
|
||||
document: https://mx-space.js.org/
|
||||
BIN
appstore/mx-space/logo.png
Normal file
BIN
appstore/mx-space/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 253 KiB |
@@ -14,7 +14,7 @@ services:
|
||||
- initial_email=${INITIAL_EMAIL}
|
||||
- initial_server_url=${INITIAL_SERVER_URL}
|
||||
- initial_ssh_root_url=${INITIAL_SSH_ROOT_URL}
|
||||
image: 1dev/server:12.0.1
|
||||
image: 1dev/server:12.0.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
2
appstore/onedev/12.0.2/envs/default.env
Normal file
2
appstore/onedev/12.0.2/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
appstore/onedev/12.0.2/envs/global.env
Normal file
2
appstore/onedev/12.0.2/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
10
appstore/onedev/12.0.2/scripts/uninstall.sh
Normal file
10
appstore/onedev/12.0.2/scripts/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
36
dockge/mx-space/.env
Normal file
36
dockge/mx-space/.env
Normal file
@@ -0,0 +1,36 @@
|
||||
# 数据持久化路径 [必填]
|
||||
MX_SERVER_ROOT_PATH=/home/mx-space
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=2333
|
||||
|
||||
# JWT 密钥 [必填]
|
||||
JWT_SECRET=
|
||||
|
||||
# 允许的访问来源 [必填]
|
||||
ALLOWED_ORIGINS=,localhost
|
||||
|
||||
# 数据库 主机地址 (MongoDB) [必填]
|
||||
DB_HOST=127.0.0.1
|
||||
|
||||
# 数据库 端口 (MongoDB) [必填]
|
||||
DB_PORT=27017
|
||||
|
||||
# 数据库 名称 (MongoDB) [必填]
|
||||
DB_COLLECTION_NAME=mx-space
|
||||
|
||||
# 数据库 用户名 (MongoDB)
|
||||
DB_USER=mx-space
|
||||
|
||||
# 数据库 密码 (MongoDB)
|
||||
DB_PASSWORD=mx-space
|
||||
|
||||
# Redis 主机 [必填]
|
||||
REDIS_HOST=127.0.0.1
|
||||
|
||||
# Redis 端口 [必填]
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Redis 密码
|
||||
REDIS_PASSWORD=
|
||||
|
||||
25
dockge/mx-space/docker-compose.yml
Normal file
25
dockge/mx-space/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
mx-server:
|
||||
container_name: mx-space
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- PORT=2333
|
||||
- DEMO=false
|
||||
- NODE_ENV=production
|
||||
- ENCRYPT_ENABLE=false
|
||||
image: innei/mx-server:8.4.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:2333
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MX_SERVER_ROOT_PATH}/data:/root/.mx-space
|
||||
2
dockge/mx-space/envs/default.env
Normal file
2
dockge/mx-space/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
dockge/mx-space/envs/global.env
Normal file
2
dockge/mx-space/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
- initial_email=${INITIAL_EMAIL}
|
||||
- initial_server_url=${INITIAL_SERVER_URL}
|
||||
- initial_ssh_root_url=${INITIAL_SSH_ROOT_URL}
|
||||
image: 1dev/server:12.0.1
|
||||
image: 1dev/server:12.0.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user