2
0
mirror of https://github.com/acepanel/acepanel.github.io.git synced 2026-02-07 08:11:50 +08:00

feat: 格式化

This commit is contained in:
2026-01-27 01:26:41 +08:00
parent 7184c6fcb2
commit e422162f0f
48 changed files with 407 additions and 358 deletions

View File

@@ -18,9 +18,9 @@ npm24 install
```
3. Create project:
- **Project Name**: `myapp`
- **Project Directory**: `/opt/ace/project/myapp`
- **Start Command**: `node24 app.js`
- **Project Name**: `myapp`
- **Project Directory**: `/opt/ace/project/myapp`
- **Start Command**: `node24 app.js`
4. Enable **Reverse Proxy**
## Start Command Examples
@@ -51,7 +51,7 @@ const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World');
res.send('Hello World');
});
app.listen(3000);