mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-08 02:25:34 +08:00
13 lines
291 B
Bash
Executable File
13 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source $MICROMDM_ENV_PATH
|
|
micromdm="$(pwd)/build/$(uname |tr [:upper:] [:lower:])/micromdm"
|
|
config_root="$(pwd)/tools/ngrok/config_root"
|
|
mkdir -p $config_root
|
|
|
|
$micromdm serve \
|
|
-api-key $API_TOKEN \
|
|
-server-url=$SERVER_URL \
|
|
-config-path $config_root \
|
|
-tls=false "$@"
|