Files
SpecterOps-Nemesis/scripts/services_start.sh
T
Lee Christensen fe4e0d70a4 commited for life
2023-08-09 13:14:44 -07:00

12 lines
354 B
Bash
Executable File

#/bin/bash
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd $SCRIPT_DIR/../
# If any additional args are passed, start only the services module (no enrichment)
if [ $# -gt 0 ]; then
skaffold dev -m services -m dashboard --port-forward
else
skaffold dev -m services -m dashboard -m enrichment --port-forward
fi