#!/bin/sh

# 启动gradlew服务并将其放到后台运行
cd grobid
./gradlew run --console=plain &

cd ..
# 启动uvicorn服务
uvicorn app:app --host 0.0.0.0 --port 7860