2
0
mirror of https://github.com/acepanel/acepanel.github.io.git synced 2026-02-07 11:50:57 +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,17 +18,18 @@ The list displays the following information:
## Task Status
| Status | Description |
|--------|-------------|
| Running | Task is being executed |
| Status | Description |
|-----------|----------------------------|
| Running | Task is being executed |
| Completed | Task executed successfully |
| Failed | Task execution failed |
| Failed | Task execution failed |
## Common Task Types
### Application Installation
Installation tasks are created when installing native applications:
- Install application Nginx
- Install application MySQL
- Install application Docker
@@ -36,12 +37,14 @@ Installation tasks are created when installing native applications:
### Application Uninstallation
Uninstallation tasks are created when uninstalling applications:
- Uninstall application MariaDB
- Uninstall application Redis
### Environment Installation
Installation tasks are created when installing runtime environments:
- Install environment PHP 8.4
- Install environment Node.js 20
- Install environment Go 1.24
@@ -49,6 +52,7 @@ Installation tasks are created when installing runtime environments:
## View Logs
Click the **Logs** button to view detailed execution logs of the task, including:
- Command output
- Error messages
@@ -71,6 +75,7 @@ If a task fails:
3. Re-execute the operation after resolving the issue
Common failure causes:
- Network issues causing download failures
- Insufficient disk space
- Missing dependencies

View File

@@ -24,12 +24,12 @@ Click the **Create Task** button to create a new scheduled task.
### Task Types
| Type | Description |
|------|-------------|
| Shell | Execute Shell commands or scripts |
| Backup Website | Scheduled backup of website files |
| Backup Database | Scheduled backup of database |
| Log Rotation | Scheduled rotation of log files |
| Type | Description |
|-----------------|-----------------------------------|
| Shell | Execute Shell commands or scripts |
| Backup Website | Scheduled backup of website files |
| Backup Database | Scheduled backup of database |
| Log Rotation | Scheduled rotation of log files |
### Execution Schedule
@@ -58,13 +58,13 @@ Cron expression format: `minute hour day month weekday`
Common examples:
| Expression | Description |
|------------|-------------|
| `0 2 * * *` | Every day at 2 AM |
| `0 */6 * * *` | Every 6 hours |
| `0 0 * * 0` | Every Sunday at midnight |
| `0 0 1 * *` | First day of every month at midnight |
| `*/5 * * * *` | Every 5 minutes |
| Expression | Description |
|---------------|--------------------------------------|
| `0 2 * * *` | Every day at 2 AM |
| `0 */6 * * *` | Every 6 hours |
| `0 0 * * 0` | Every Sunday at midnight |
| `0 0 1 * *` | First day of every month at midnight |
| `*/5 * * * *` | Every 5 minutes |
Don't know how to write it? Just describe your requirements clearly to an AI and let it generate one for you.