mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-18 17:15:13 +01:00
12 lines
322 B
Bash
12 lines
322 B
Bash
#!/bin/sh
|
|
|
|
# Check if config exists from existing installation (venv or previous docker launch)
|
|
if [ ! "$(ls -A ./app/config)" ]; then
|
|
mkdir ./app/config/
|
|
cp -r ./app/config_original/* ./app/config/
|
|
fi
|
|
|
|
# Activate our prepared venv and launch crafty with provided args
|
|
. .venv/bin/activate
|
|
exec python3 main.py $@
|