# v3pro-proxy-server **Repository Path**: eric-sansi/v3pro-proxy-server ## Basic Information - **Project Name**: v3pro-proxy-server - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-06 - **Last Updated**: 2025-03-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # V3Pro Status Proxy [toc] ## 开发环境 1. Nodejs版本:v16.20.2 + 2. 开发语言:TypeScript 3. Ide: Webstorm ## 启动命令 1. 本地调试 ```shell npm run dev ``` 2. 单元测试 ```shell npm run test:unit ``` 3. 打包 ```shell npm run build ``` ## 打包与启动 1. 打包输出目录 ```text ./dist ``` 2. 服务器启动脚本 ```text ./dist/server.js ``` 3. 服务启动命令 ```shell # windows 启动 cd ./dist set NODE_ENV=production && node dist/server.js # linux 启动 cd ./dist export NODE_ENV=production && node dist/server.js ``` ## 配置文件 1. 本地配置文件(开发环境) ```text application.config.json5 ``` 2. 线上配置文件(生产环境) ```text ./dist/application.config.json5 ``` 3. 默认模版配置文件 ```text configs/default-cnf/global.default.config.ts ```