Select Git revision
feedback_handling.py
-
Jorrit Schaap authored
TMSS-307: while working on TMSS commissioning with TMSS-573 it showed that feedback processing was not robust against undeterministic feedback message order. Now it is.
Jorrit Schaap authoredTMSS-307: while working on TMSS commissioning with TMSS-573 it showed that feedback processing was not robust against undeterministic feedback message order. Now it is.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
deploy_local_dev.sh 521 B
#!/usr/bin/bash
# be in an existing git cloned atdb-ldv directory (like $HOME/my_docker/atdb-ldv)
# Pull the latest changes and capture the output
OUTPUT=$(git pull)
# Check if there are any changes pulled
if [[ $OUTPUT == *"Already up to date."* ]]; then
echo "No changes detected. Skipping redeploy."
else
echo "Changes detected. Proceeding with redeploy."
# Proceed with build and redeploy
cd atdb
docker build -t atdb-ldv:latest .
docker-compose -f docker/docker-compose-dev-local.yml -p atdb up -d
fi