Spaces:
Runtime error
Runtime error
Commit
·
0756b41
1
Parent(s):
0a8c1b6
Updated run.sh and Dockerfile. small update....again...again....again...
Browse files
run.sh
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
set -e # Exit on error
|
4 |
|
5 |
# Default values
|
6 |
-
CONFIG_FILE="
|
7 |
ENV_FILE=".env"
|
8 |
CONTAINER_NAME="llm-inference-server"
|
9 |
BUILD_ONLY=false
|
@@ -26,20 +26,14 @@ handle_error() {
|
|
26 |
exit 1
|
27 |
}
|
28 |
|
29 |
-
# Function to read yaml
|
30 |
parse_yaml() {
|
31 |
local file=$1
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
print(config['server']['port'])
|
38 |
-
print(config['server']['host'])
|
39 |
-
"
|
40 |
-
else
|
41 |
-
handle_error "Python3 is required to parse YAML config"
|
42 |
-
fi
|
43 |
}
|
44 |
|
45 |
# Parse command line arguments
|
|
|
3 |
set -e # Exit on error
|
4 |
|
5 |
# Default values
|
6 |
+
CONFIG_FILE="resources/local_config.yaml"
|
7 |
ENV_FILE=".env"
|
8 |
CONTAINER_NAME="llm-inference-server"
|
9 |
BUILD_ONLY=false
|
|
|
26 |
exit 1
|
27 |
}
|
28 |
|
29 |
+
# Function to read yaml using grep and sed
|
30 |
parse_yaml() {
|
31 |
local file=$1
|
32 |
+
# Get port - look for port under server section and extract the number
|
33 |
+
PORT=$(grep -A5 "^server:" "$file" | grep "port:" | sed 's/[^0-9]*//g')
|
34 |
+
# Get host - look for host under server section and extract the value in quotes
|
35 |
+
HOST=$(grep -A5 "^server:" "$file" | grep "host:" | sed 's/.*"//;s/".*//')
|
36 |
+
echo "$PORT $HOST"
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
38 |
|
39 |
# Parse command line arguments
|