nianlonggu
update
a877983
raw
history blame contribute delete
No virus
327 Bytes
#!/bin/bash
screen -dmS grobid bash -c 'cd $HOME/grobid-0.6.1 && ./gradlew run'
source activate my_env
gunicorn -k gthread -w 4 --threads 16 --backlog 2048 pdf_parsing_service:app -b 0.0.0.0:8061 &
## wait for the pdf parsing service to be ready
sleep 20
streamlit run app.py --server.maxUploadSize 200 --server.port 7860