Compare commits

..
2 Commits
Author SHA1 Message Date
xBeaTz aea8eff656 Merge pull request 'docs: add initial README' (#1) from feature/change-readme into develop
Reviewed-on: #1
2026-07-22 00:50:57 +02:00
xBeaTz 048a869c30 docs: add initial README 2026-07-22 00:48:58 +02:00
+70
View File
@@ -0,0 +1,70 @@
# Server Manager
Dynamic Dedicated Server Management System.
## Components
* Manager
* Wrapper
* Shared
* Dashboard
## Build
Build all workspaces:
```bash
npm run build --workspaces
```
## Development
### Manager
```bash
npm start --workspace manager
```
### Dashboard
```bash
npm run dev --workspace dashboard
```
## Architecture
### Manager
Responsible for:
* Server lifecycle management
* Dynamic scaling
* Wrapper communication
* Server registry
### Wrapper
Responsible for:
* Process management
* Dedicated server control
* Server monitoring
* Status reporting
### Shared
Contains:
* Common types
* Shared interfaces
* Communication contracts
## Project Structure
```text
server-manager/
├── manager/
├── wrapper/
├── shared/
└── dashboard/
```