├── Plugin.js ├── Plugin ├── FileOperator │ ├── FileOperator.js │ ├── package-lock.json │ ├── package.json │ └── plugin-manifest.json └── SciCalculator │ ├── calculator.py │ ├── plugin-manifest.json │ └── requirements.txt ├── README.md ├── VCPDistributedServer.js ├── config.env.example ├── package.json └── start_server.bat /Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin.js -------------------------------------------------------------------------------- /Plugin/FileOperator/FileOperator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/FileOperator/FileOperator.js -------------------------------------------------------------------------------- /Plugin/FileOperator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/FileOperator/package-lock.json -------------------------------------------------------------------------------- /Plugin/FileOperator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/FileOperator/package.json -------------------------------------------------------------------------------- /Plugin/FileOperator/plugin-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/FileOperator/plugin-manifest.json -------------------------------------------------------------------------------- /Plugin/SciCalculator/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/SciCalculator/calculator.py -------------------------------------------------------------------------------- /Plugin/SciCalculator/plugin-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/SciCalculator/plugin-manifest.json -------------------------------------------------------------------------------- /Plugin/SciCalculator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/Plugin/SciCalculator/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/README.md -------------------------------------------------------------------------------- /VCPDistributedServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/VCPDistributedServer.js -------------------------------------------------------------------------------- /config.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/config.env.example -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/package.json -------------------------------------------------------------------------------- /start_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioensky/VCPDistributedServer/HEAD/start_server.bat --------------------------------------------------------------------------------