chore: Add an ugly script to deploy easily

This commit is contained in:
Clément Renault 2018-09-25 15:09:51 +02:00
parent 806ed2cc33
commit a8d2fbd3aa
1 changed files with 21 additions and 0 deletions

21
deploy-ugly.sh Normal file
View File

@ -0,0 +1,21 @@
#! /usr/bin/sh
# Notes
#
# $1 (First argument) must be the stop-worlds file (e.g. en.stopwords.txt)
#
# $2 (Second argument) must be the meta file name (e.g. relaxed-colden)
if [ $# -ne 2 ]; then
echo 'You must specify the stop-words file and the meta file name'
exit 1
fi
# Kill all processes that have a connection on a given port
kill -9 $(lsof -ti :3030)
# Copy the binary to another place
cp raptor-http.bin /etc/raptor-http
# Run the server on the a specific port and in background
/etc/raptor-http -l 0.0.0.0:3030 --stop-words $1 $2 > /dev/null 2>&1 &