5 lines
137 B
Bash
5 lines
137 B
Bash
#!/bin/sh
|
|
# 小鑫 AI 助手 启动脚本(一个进程同时提供后台 API 与前端界面)
|
|
cd "$(dirname "$0")"
|
|
bun run server.ts
|