March 2018
Beginner to intermediate
344 pages
7h 7m
English
We can let Travis handle our deployment automatically, but we'll need a way to give Travis access to our deployment token. We can get this token for CI environments by running the following command in the Terminal:
$ firebase login:ci
After logging in to your Google account once again, you should be given a token inside of the Terminal:
Success! Use this token to login on a CI server:# Token here
Keep the token for now, as we'll need it in a second.
Navigate back to the Travis CI dashboard, and go to the settings for your project. Inside of the settings, we'll need to add an environment variable that we can ...