Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Massad committed May 27, 2021
0 parents commit d31924b
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
build/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ta-cli
8 changes: 8 additions & 0 deletions linux/config.json
Original file line number Diff line number Diff line change
@@ -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"
}
8 changes: 8 additions & 0 deletions macos/config.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions macos/install.sh
Original file line number Diff line number Diff line change
@@ -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`'.

0 comments on commit d31924b

Please sign in to comment.