While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Angular allows us to build performant web applications that can be deployed to mobile, web and desktop. Firebase Hosting is a popular service that is easy to use with a CLI tool. In this article, we’ll be using Travis CI to automate this deployment.
Create a new Angular project with the Angular CLI to establish a common base:
We can now create a basic Angular project. Head over to app.component.html
and create the following template:
We can also add some CSS styles to make it a little more magic, inside of app.component.scss
:
Finally, inside of the global styles.scss
let’s default the html
and body
styles:
The first step in our process is to get Firebase Hosting up and running. Head over to Firebase Hosting and create a new project:
We can install the firebase-tools
CLI globally by running the following in the terminal:
After installation, log in to the CLI by running:
Now that we’re authenticated, we can initialize Firebase inside of our project.
Sweet. We’re now ready to deploy our application to Firebase! Let’s build it for production using the Angular CLI:
This generates a dist
folder with all of our files inside. Deploy that to firebase with:
If you got a message similar to the below, everything went well:
It’s not great having to do this manually each time. Sure, it’s only two commands, but what if we had multiple team members? Also, I don’t want to have to think about deployment, I want to write more code!
Firstly, head over to https://travis-ci.com/ and log in with your GitHub account. Allow Travis access to all of your repositories.
This will show us a list of repositories that we can automate, but ours isn’t there… because it doesn’t exist!
Create a new GitHub repository over at https://github.com/new
We can then push this to GitHub with the following commands:
We’re nearly there. We now need to create a .travis.yml
file that contains the automated deployment steps:
The Travis CI automation steps are built in yml
and provide an understandable set of instructions.
Something looks off. The token
is blank. This is because we need to generate it with the firebase
CLI:
You should get back a long token that can be used in place of the empty token
above.
Push this .travis.yml
file up to GitHub with the following:
Now, head over to https://travis-ci.com and check out the build!
In this article we looked at how to create an application with Angular and deploy it to Firebase Hosting.
We then looked at how to automate this process with Travis CI. Any time the master
branch is updated, this build process will run and publish to Firebase Hosting.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
* This promotional offer applies to new accounts only.