Fix a bug in deployment
[sim/a1-interface.git] / near-rt-ric-simulator / src / start.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2020 Nordix Foundation. All rights reserved.
5 #  ========================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #  ============LICENSE_END=================================================
18 #
19
20 if [ $# -ne 1 ]; then
21     echo "Expected folder name of simulator."
22     echo "The container shall be started with env variable 'A1_VERSION' set to the folder name of the A1 version to use."
23     echo "Exiting...."
24     exit 1
25 fi
26 echo "Version folder for simulator: "$1
27
28 #Set path to open api
29 export APIPATH=$PWD/api/$1
30 echo "APIPATH set to: "$APIPATH
31
32 cd src
33
34 #Include common module(s)
35 export PYTHONPATH=$PWD/common
36 echo "PYTHONPATH set to: "$PYTHONPATH
37
38 cd $1
39
40 #start nginx
41 nginx -c /usr/src/app/nginx.conf
42
43 #start callBack server
44 if [ ${A1_VERSION} == "STD_1.1.3" ]; then
45     echo "Path to callBack.py: "$PWD
46     python -u callBack.py &
47 fi
48
49 #start near-rt-ric-simulator
50 echo "Path to main.py: "$PWD
51 python -u main.py