DEV Community

Discussion on: Setting up fastlane when you don't know what you are doing

Collapse
 
mrtnrst profile image
Martin Arista • Edited

This is awesome @jessachandler ! πŸ™ŒπŸΌπŸŽ‰ Fastlane has saved me so much time and energy and once you set it up you can let CI do it's job and never have to think about it.

I also have mine setup to handle .env to keep keys and sensitive data out of the repo and it works like a charm.

For instance using Match to load certificates:

fastlane_require 'dotenv' 

lane :installCerts do
  match(
    git_url: ENV['MATCH_REPO_URL'],
    username: ENV['MATCH_USERNAME'],
    app_identifier: ENV['APP_IDENTIFIER'],
    readonly: true
  )
end
Collapse
 
jessachandler profile image
Jess Chandler

Thanks for the props. I :greenheart: Fastlane :rocket: !