You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
352 B
Bash

function project_run() {
clear
sh ./chug open_on_ready &>/dev/null &
print_process_banner "RUNNING DEV ENVIRONMENT..." "$LGREEN$BLINK"
CURRENT_UID=$CURRENT_UID docker-compose -f .chug/docker/compose/editor-development.yml -p traqtor --compatibility up
print_process_banner "DEV ENVIRONMENT STOPPED" ""
}
CHUG_COMMAND_SET["run"]="project_run"