feat: initialize VPS fleet manager with server management functionality

- Add package.json for project metadata and dependencies
- Create server.js for API endpoints and server logic
- Implement data persistence using JSON file for server information
- Add HTML frontend (vps_manager.html) for server management interface
- Include Leaflet for map visualization of server locations
- Create start.bat for easy server startup on Windows
This commit is contained in:
2026-05-25 20:19:24 -04:00
commit 1aafdc7b19
7 changed files with 1422 additions and 0 deletions

4
start.bat Normal file
View File

@@ -0,0 +1,4 @@
@echo off
echo Starting vps/fleet...
node server.js
pause