Home

Docker安装n8n并配置自定义扩展节点

Here’s the table of contents: 拉取n8n镜像 创建数据卷 迁移用户数据 权限修复 下载节点并从扩展目录加载 使用扩展目录并运行n8n 其它常用参考命令 其它 拉取n8n镜像 # Pull latest (stable) version docker pull docker.n8n.io/n8nio/n8n # docker pull 10.0.0.11:2001/n8nio/n8n 创建数据卷 # 数据卷创建后默认位置 /var/lib/docker/volumes/ docker volume create n8n_data # 删除数据卷 # docker volume rm n8n_data 迁移用户数...

Read more

基于Nginx自定义n8n社区节点下载仓库

Here’s the table of contents: 自定义n8n社区节点下载仓库位置 修改Nginx配置 安装Git Bash 修改Hosts 修改用户目录下的.npmrc配置 安装社区节点 自定义n8n社区节点下载仓库位置  n8n中自定义N8N_COMMUNITY_PACKAGES_REGISTRY是企业版功能,为了在社区版中可以正常使用,这里使用Nginx转发功能实现仓库地址的修改。 修改Nginx配置 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/erro...

Read more

JavaScript SDK 发布

Here’s the table of contents: 私有仓库发布 配置Home-User目录下的.npmrc文件一 配置Home-User目录下的.npmrc文件二 打包 上传 私有仓库发布 配置Home-User目录下的.npmrc文件一 registry=http://10.0.0.01:8081/repository/npm-internal/ //10.0.27.61:8081/repository/npm-internal/:username=username //10.0.27.61:8081/repository/npm-internal/:_password=ODhwbmF5THVzd05HQl...

Read more

2025-07-10-MCP协议HTTP交互过程

Here’s the table of contents: MCP 协议 SSE 模式下的 HTTP 请求过程 1. 建立 SSE 连接(GET) 2. 初始化(POST) 3. 通知已初始化(POST) 4. 获取工具列表(POST) 5. 获取资源列表(POST) 6. 获取提示词列表(POST) 7. 获取资源模板列表(POST) 8. 调用 list_tables 工具(POST) MCP 协议 SSE 模式下的 HTTP 请求过程  下面演示了从连接MCP服务到执行资源获取、提示词获取、工具调用的完整HTTP交互过程。【备注:执行结果需要订阅1中...

Read more

DBeaver中使用Nginx将Openai地址代理到自定义地址

Here’s the table of contents: DBeaver中使用Nginx将Openai地址代理到自定义地址 DBeaver中使用Nginx将Openai地址代理到自定义地址 # 安装Nginx For Windows # 修改hosts,访问域名时保证可以走Nginx代理 127.0.0.1 api.openai.com # 修改Nginx配置,请看Nginx完整配置 # 加载配置访问映射修改 nginx -p e:\software\nginx-1.29.0 -t # 使用openssl命令生成 api.openai.crt api.openai.csr api.openai.key 文件 # Postman中测试HTTPS需要从setting中关闭...

Read more

Git操作记录

Here’s the table of contents: 操作 操作 # 撤销某次提交,会自动为你生成一个新的撤销提交 git revert <commit-id> # 将撤销提交推送到远程 git push

Read more

Flutter使用

Here’s the table of contents: 命令 命令 # 构建依赖 flutter pub get # 热加载实时查看 flutter run -d macos # 打包发布 flutter build macos

Read more

uv使用

Here’s the table of contents: 下载 下载 # 命令的功能为1~5描述的内容: # 1.如果存在 .mcp-server 文件夹,则删除它(包括其所有内容) # 2.创建一个名为 .mcp-server 的虚拟环境 # 3.激活刚刚创建的虚拟环境 # 4.使用 uv 安装 mcp-server-demo-python 这个包,指定版本为 0.0.3,从本地 PyPI 仓库安装,并信任本地主机 # 5.使用 uv 运行 mcp-server-demo-python if exist .mcp-server (rd /s /q .mcp-server) && uv venv .mcp-server && call .m...

Read more