-
Notifications
You must be signed in to change notification settings - Fork 3
Locally
You will either need to configure environment variables or pass in arguments. The following shows it with passing in arguments like --only-scripts
.
python3 git2kandji.py --subdomain accuhive --region us --token abcd1234
python3 git2kandji.py --subdomain accuhive --region us --token abcd1234 --only-scripts
python3 git2kandji.py --subdomain accuhive --region us --token abcd1234 --only-profiles
python3 git2kandji.py --subdomain accuhive --region us --token abcd124 --delete
python3 git2kandji.py --subdomain accuhive --region us --token abcd124 --dryrun
You will either need to configure environment variables or pass in arguments. The following shows it with environment variables. Arguments passed into the script will always override environment variables.
export INPUT_KANDJI_SUBDOMAIN=accuhive
export INPUT_KANDJI_REGION=us
export INPUT_KANDJI_TOKEN=abcd1234
export INPUT_DELETE=true
python3 git2kandji.py