私有部署 
本地运行 
需要 >= node22 环境
拉取代码 
安装依赖 
shell
yarn1
或者
shell
npm install1
启动 
shell
yarn dev1
或者
shell
npm run dev1
docker 运行 
拉取镜像 
shell
docker pull ghcr.io/wechat-article/wechat-article-exporter:latest1
启动容器 
镜像暴露的端口号为3000,内部存储目录为/app/.data
shell
docker run -d --rm \
  --name wechat-article-exporter \
  -p 3000:3000 \
  -v ./.data:/app/.data \
  ghcr.io/wechat-article/wechat-article-exporter:latest1
2
3
4
5
2
3
4
5
浏览器访问 
浏览器打开 http://localhost:3000 即可使用专业版功能。
