# RuoYi-Cloud-Postgresql **Repository Path**: stone1116/ry-cloud-postgresql ## Basic Information - **Project Name**: RuoYi-Cloud-Postgresql - **Description**: 基于若依3.6.5修改的postgresql版本 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2024-12-28 - **Last Updated**: 2025-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #离线npm包配置 ## 连接服务器,创建上传目录。 cd /home makir npm cd /npm ## 上传node_modules依赖包,并解压到当前目录下 unzip node_modules.zip cd node_modules ## 授权并登录Nexus。 chmod a+x uploadUpmOffline.sh npm login -u admin -p admin --registry=http://192.168.100.100:8080/repository/npm-test/ ## 执行上传脚本,上传node_modules镜像 ``` #!/bin/bash for file in $(ls /home/npm/node_modules) do if [ "${file##*.}" = "tgz" ]; then npm publish /home/npm/node_modules/$file --registry=http://192.168.100.100:8080/repository/npm-test/ fi done ```