docs: remove PM2/bare-metal references

This commit is contained in:
david_bai
2026-02-28 12:37:11 +08:00
parent 2b24dbef0e
commit 0dfe627e25
6 changed files with 5 additions and 9 deletions
+1 -2
View File
@@ -42,7 +42,6 @@ backend/
│ │ ├── room.ts
│ │ └── socket.ts
│ └── server.ts # Main application entry point: Express and Socket.IO setup
├── ecosystem.config.js # PM2 configuration file
├── package.json
└── tsconfig.json
```
@@ -132,4 +131,4 @@ Redis is a key component of the backend, used to store all temporary state. We c
- **Purpose**: Tracks the number of visits from different sources (Referrers) on a daily basis.
- **Fields**: The referrer's domain name (e.g., `google.com`, `github.com`).
- **Value**: The cumulative visit count for the day.
- **Logic**: The `HINCRBY` command is used to atomically increment the count for a specified source.
- **Logic**: The `HINCRBY` command is used to atomically increment the count for a specified source.
-1
View File
@@ -42,7 +42,6 @@ backend/
│ │ ├── room.ts
│ │ └── socket.ts
│ └── server.ts # 主应用程序入口点: Express 和 Socket.IO 设置
├── ecosystem.config.js # PM2 配置文件
├── package.json
└── tsconfig.json
```