diff --git a/apps/nvpress/3.5.0/.env.sample b/apps/nvpress/3.5.0/.env.sample new file mode 100644 index 00000000..813bef31 --- /dev/null +++ b/apps/nvpress/3.5.0/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="nvpress" +PANEL_APP_PORT_HTTP="40148" +DATA_PATH="./data" diff --git a/apps/nvpress/3.5.0/data.yml b/apps/nvpress/3.5.0/data.yml new file mode 100644 index 00000000..151899ed --- /dev/null +++ b/apps/nvpress/3.5.0/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: 40148 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text diff --git a/apps/nvpress/3.5.0/docker-compose.yml b/apps/nvpress/3.5.0/docker-compose.yml new file mode 100644 index 00000000..ad2cc081 --- /dev/null +++ b/apps/nvpress/3.5.0/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3' +services: + nvpress: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:8081" + volumes: + - "${DATA_PATH}/nv-content:/usr/src/app/nv-content" + - "${DATA_PATH}/nv-themes:/usr/src/app/nv-themes" + - "${DATA_PATH}/nv-plugins:/usr/src/app/nv-plugins" + image: pandastd/nvpress:3.5.0 + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/nvpress/README.md b/apps/nvpress/README.md new file mode 100644 index 00000000..8a696c71 --- /dev/null +++ b/apps/nvpress/README.md @@ -0,0 +1,43 @@ +# 什么是nvPress + +## nvPress是一个完全由 Javascript 驱动的内容管理程序 + +## 虽然nvPress是免费开放使用的,但源代码并不开放。本项目不包含nvPress的源代码,仅收集使用过程中遇到的错误、BUG + +- 功能包括:用户管理、媒体管理、文章管理、主题、插件等。 + +- 可用于:个人博客、作品集、网站内容展示。 + +- 可通过主题、插件来实现功能的二次扩展 + +## 持久化存储 + +|宿主机文件夹路径|注释| +|--|--| +|data/nv-content|数据和上传的媒体| +|data/nv-plugins|插件文件夹| +|data/nv-themes|主题文件夹| + +## 主题插件下载 + +- [https://dsm.panda-studio.cn:5001/sharing/La3x75Hcf](https://dsm.panda-studio.cn:5001/sharing/La3x75Hcf) + +## 它如何运行 + +### 为了方便部署并且减少环境安装和影响,nvPress运行在Docker环境中,安装后直接运行。Docker提供amd64和arm64两种平台可用。 + +### 也提供以下版用于本地运行和二次开发: + +- Windows-amd64 +- Linux-amd64 +- Mac-amd64 + +## 提示 + +> 虽然有多个版本可供选择,但仍然建议普通用户在服务器上使用Docker版 + +## 群组讨论 + +👉 QQ讨论群:611246443(官方唯一群,仅200人,不定期清理非活跃用户) + +👉 QQ讨论群:790411996(网友自建群,开发者本人也在里面哦) \ No newline at end of file diff --git a/apps/nvpress/data.yml b/apps/nvpress/data.yml new file mode 100644 index 00000000..4c300190 --- /dev/null +++ b/apps/nvpress/data.yml @@ -0,0 +1,20 @@ +name: nvPress +tags: + - 工具 +title: 一个完全由 Javascript 驱动的内容管理程序 +type: 工具 +description: 一个完全由 Javascript 驱动的内容管理程序 +additionalProperties: + key: nvpress + name: nvPress + tags: + - Tool + shortDescZh: 一个完全由 Javascript 驱动的内容管理程序 + shortDescEn: A content management program driven entirely by Javascript + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://docs.panda-studio.cn:8282/docs/post-19/page-100 + github: https://docs.panda-studio.cn:8282/docs/post-19/page-100 + document: https://docs.panda-studio.cn:8282/docs/post-19/page-100 diff --git a/apps/nvpress/latest/.env.sample b/apps/nvpress/latest/.env.sample new file mode 100644 index 00000000..813bef31 --- /dev/null +++ b/apps/nvpress/latest/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="nvpress" +PANEL_APP_PORT_HTTP="40148" +DATA_PATH="./data" diff --git a/apps/nvpress/latest/data.yml b/apps/nvpress/latest/data.yml new file mode 100644 index 00000000..151899ed --- /dev/null +++ b/apps/nvpress/latest/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: 40148 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text diff --git a/apps/nvpress/latest/docker-compose.yml b/apps/nvpress/latest/docker-compose.yml new file mode 100644 index 00000000..22f5afcc --- /dev/null +++ b/apps/nvpress/latest/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3' +services: + nvpress: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:8081" + volumes: + - "${DATA_PATH}/nv-content:/usr/src/app/nv-content" + - "${DATA_PATH}/nv-themes:/usr/src/app/nv-themes" + - "${DATA_PATH}/nv-plugins:/usr/src/app/nv-plugins" + image: pandastd/nvpress:latest + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/nvpress/logo.png b/apps/nvpress/logo.png new file mode 100644 index 00000000..982f2bbe Binary files /dev/null and b/apps/nvpress/logo.png differ