diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed86553 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +build/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..c116816 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# ta-cli diff --git a/linux/config.json b/linux/config.json new file mode 100644 index 0000000..ceb4487 --- /dev/null +++ b/linux/config.json @@ -0,0 +1,8 @@ +{ + "apiToken": "Your API Token", + "appID": "Your App ID", + "release": "both", + "apk": "/path/to/android/app.apk", + "ipa": "/path/to/ios/app.ipa", + "notify": "yes" +} diff --git a/macos/config.json b/macos/config.json new file mode 100644 index 0000000..ceb4487 --- /dev/null +++ b/macos/config.json @@ -0,0 +1,8 @@ +{ + "apiToken": "Your API Token", + "appID": "Your App ID", + "release": "both", + "apk": "/path/to/android/app.apk", + "ipa": "/path/to/ios/app.ipa", + "notify": "yes" +} diff --git a/macos/install.sh b/macos/install.sh new file mode 100644 index 0000000..4ac0a3e --- /dev/null +++ b/macos/install.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +curl -LO https://github.com/testappio/cli/releases/latest/download/macos.zip +unzip macos.zip +rm -rf macos.zip +mv ta-cli /usr/local/bin/ta-cli + +echo +echo 'You can now run `ta-cli -h`'.