maximesson | 6e11949 | 2020-03-12 17:24:41 +0100 | [diff] [blame] | 1 | #!/bin/bash |
BjornMagnussonXA | 21be2e0 | 2020-03-25 09:37:14 +0100 | [diff] [blame] | 2 | |
maximesson | 6e11949 | 2020-03-12 17:24:41 +0100 | [diff] [blame] | 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 |
maximesson | 3152544 | 2020-03-20 16:20:57 +0100 | [diff] [blame] | 9 | # |
maximesson | 6e11949 | 2020-03-12 17:24:41 +0100 | [diff] [blame] | 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
maximesson | 3152544 | 2020-03-20 16:20:57 +0100 | [diff] [blame] | 11 | # |
maximesson | 6e11949 | 2020-03-12 17:24:41 +0100 | [diff] [blame] | 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 | |
BjornMagnussonXA | 21be2e0 | 2020-03-25 09:37:14 +0100 | [diff] [blame] | 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 |
maximesson | 6e11949 | 2020-03-12 17:24:41 +0100 | [diff] [blame] | 27 | |
BjornMagnussonXA | 21be2e0 | 2020-03-25 09:37:14 +0100 | [diff] [blame] | 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 | |
ecaiyanlinux | 9ab67f5 | 2020-05-14 15:11:45 +0200 | [diff] [blame] | 40 | #start nginx |
| 41 | nginx -c /usr/src/app/nginx.conf |
| 42 | |
ecaiyanlinux | dceaf39 | 2020-05-18 14:40:53 +0200 | [diff] [blame^] | 43 | #start callBack server |
| 44 | echo "Path to callBack.py: "$PWD |
| 45 | python -u callBack.py & |
| 46 | |
ecaiyanlinux | 9ab67f5 | 2020-05-14 15:11:45 +0200 | [diff] [blame] | 47 | #start near-rt-ric-simulator |
BjornMagnussonXA | 21be2e0 | 2020-03-25 09:37:14 +0100 | [diff] [blame] | 48 | echo "Path to main.py: "$PWD |
| 49 | python -u main.py |