CoI_Agent / start.sh
jianghuyihei's picture
first commit
863d8a3
raw
history blame
174 Bytes
#!/bin/sh
# 启动gradlew服务并将其放到后台运行
cd grobid
./gradlew run --console=plain &
cd ..
# 启动uvicorn服务
uvicorn app:app --host 0.0.0.0 --port 7860