8 lines
159 B
Bash
Executable File
8 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "${ROOT_DIR}/manager-solution"
|
|
exec python3 configurator_server.py
|