AurelioAguirre commited on
Commit
0756b41
·
1 Parent(s): 0a8c1b6

Updated run.sh and Dockerfile. small update....again...again....again...

Browse files
Files changed (1) hide show
  1. run.sh +7 -13
run.sh CHANGED
@@ -3,7 +3,7 @@
3
  set -e # Exit on error
4
 
5
  # Default values
6
- CONFIG_FILE="main/resources/local_config.yaml"
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 (simplified)
30
  parse_yaml() {
31
  local file=$1
32
- if command -v python3 &> /dev/null; then
33
- python3 -c "
34
- import pyyaml
35
- with open('$file', 'r') as f:
36
- config = pyyaml.safe_load(f)
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