We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From Robert: https://github.com/watson-developer-cloud/ios-sdk/blob/master/.travis.yml https://docs.travis-ci.com/user/encrypting-files/
notice this command: - openssl aes-256-cbc -K $encrypted_1ae11c268751_key -iv $encrypted_1ae11c268751_iv -in WatsonDeveloperCloudTests/Credentials_full.plist.enc -out WatsonDeveloperCloudTests/Credentials.plist -d actually deencypts the file
make sure you git ignore Credentials.plist so you don’t automatically check it into the project
you will probably want every developer to have Credentials.plist file on their filesystems, however. The Xcode project will contain a reference to it
The text was updated successfully, but these errors were encountered:
xanderbuck
No branches or pull requests
From Robert:
https://github.com/watson-developer-cloud/ios-sdk/blob/master/.travis.yml
https://docs.travis-ci.com/user/encrypting-files/
notice this command: - openssl aes-256-cbc -K $encrypted_1ae11c268751_key -iv $encrypted_1ae11c268751_iv -in WatsonDeveloperCloudTests/Credentials_full.plist.enc -out WatsonDeveloperCloudTests/Credentials.plist -d actually deencypts the file
make sure you git ignore Credentials.plist so you don’t automatically check it into the project
you will probably want every developer to have Credentials.plist file on their filesystems, however. The Xcode project will contain a reference to it
The text was updated successfully, but these errors were encountered: