Intro
Doing the same thing is very bored. On this topic, the boring part is deploying our Web Application to Firebase Hosting. The steps that we do areĀ :
- Test your react app,
yarn test
- Push to
git
- Build your react app,
yarn build
- Do deployment to firebase hosting,
firebase deploy
The above steps is very bored, in this article I try to share my experience to summarize the four jobs above into one. So all we need to do is push changes to the git repository, and CircleCI will do everything.
Requirements
Before starting further, you must have the five requirements belowĀ :
- React App.
- Firebase Project, go to here.
- Git repository. My repository for this tutorial, here
- Firebase Command Line Tools, go to here.
- CircleCI account, go to here.
Letās start!
1. Configure Firebase
Create a React project, in this tutorial I will using create-react-app
$ create-react-app learn-cd-react-firebase$ cd learn-cd-react-firebase$ yarn install$ yarn build
We need configure our project to connect with Firebase, do firebase login
$ firebase login
? Allow Firebase to collect anonymous CLI usage and error reporting information? No
Visit this URL on any device to log in:https://accounts.google.com/o/oauth2/auth?client_id=563584335869-xxxxxxx
Waiting for authentication...
ā Success! Logged in as [email protected]
Do firebase init
Ā , this will setup a new Firebase project in the current directory. This command will create a firebase.json
configuration file in your current directory.
Use spaces to make choice, chooseHosting
You're about to initialize a Firebase project in this directory:
/Users/arryanggaalievpratamaputra/sites/learn-cd-react-firebase
? Which Firebase CLI features do you want to setup for this folder? Press Space to select features, then Enter to confirm your choices.⯠Database: Deploy Firebase Realtime Database Rules⯠Firestore: Deploy rules and create indexes for Firestore⯠Functions: Configure and deploy Cloud FunctionsāÆā Hosting: Configure and deploy Firebase Hosting sites⯠Storage: Deploy Cloud Storage security rules
Choose your Firebase Project
First, let's associate this project directory with a Firebase project. You can create multiple project aliases by running firebase use --add, but for now we'll just set up a default project.
? Select a default Firebase project for this directory:[don't setup a default project]mws-surabaya (mws-surabaya)⯠learn-cd-react-firebase (learn-cd-react-firebase)[create a new project]
Configure public directory, type build
Ā ,create-react-app
project will generate your build into build
folder. Configure as a single-page app, type Yes
=== Hosting Setup
Your public directory is the folder (relative to your project directory) thatwill contain Hosting assets to be uploaded with firebase deploy. If youhave a build process for your assets, use your build's output directory.
? What do you want to use as your public directory? build? Configure as a single-page app (rewrite all urls to /index.html)? Yes? File build/index.html already exists. Overwrite? Noi Skipping write of build/index.html
i Writing configuration info to firebase.json...i Writing project information to .firebaserc...
ā Firebase initialization complete!
2. Deploy to FirebaseĀ Manually
To make sure whether that our Firebase Hosting can be used, weāll try to do Deployment manually.
We do builds with commandsyarn build
yarn run v1.10.1$ react-scripts buildCreating an optimized production build...Compiled successfully.
File sizes after gzip:
34.71 KB build/static/js/1.fa92c112.chunk.js763 B build/static/js/runtime~main.229c360f.js713 B build/static/js/main.b50be446.chunk.js511 B build/static/css/main.3a30845b.chunk.css
The project was built assuming it is hosted at the server root.You can control this with the homepage field in your package.json.For example, add this to build it for GitHub Pages:
"homepage" : "https://learn-cd-react-firebase.firebaseapp.com",
The build folder is ready to be deployed.You may serve it with a static server:
yarn global add serveserve -s build
Find out more about deployment here:
⨠Done in 13.14s.
After build success, we do deployment to Firebase with commandsfirebase deploy
=== Deploying to 'learn-cd-react-firebase'...
i deploying hostingi hosting[learn-cd-react-firebase]: beginning deploy...i hosting[learn-cd-react-firebase]: found 15 files in buildā hosting[learn-cd-react-firebase]: file upload completei hosting[learn-cd-react-firebase]: finalizing version...ā hosting[learn-cd-react-firebase]: version finalizedi hosting[learn-cd-react-firebase]: releasing new version...ā hosting[learn-cd-react-firebase]: release complete
ā Deploy complete!
Project Console: https://console.firebase.google.com/project/learn-cd-react-firebase/overviewHosting URL: https://learn-cd-react-firebase.firebaseapp.com
Itās work š„š https://learn-cd-react-firebase.firebaseapp.com
3. Configure CircleCI with OurĀ Project
Go to circleci.com, andADD PROJECT
Press Setup ProjectĀ button
Choose Linux
as operating system, and Node
as our language.
Back to our project, and create CircleCI configuration
- Create a folder namedĀ
.circleci
- Add a file
config.yml
(so that the filepath be inĀ.circleci/config.yml
). - Populate the
config.yml
with the contents of the sampleconfig.yml
- Copy this sample to our repository
version: 2jobs:build:docker:- image: 'circleci/node:8'working_directory: ~/reposteps:- checkout- restore_cache:keys:- 'v1-dependencies-{{ checksum "package.json" }}'- v1-dependencies-- run: 'yarn install'- save_cache:paths:- node_moduleskey: 'v1-dependencies-{{ checksum "package.json" }}'- run: 'yarn test'
Push this change up to GitHub, and Start building! You need to press blue button labeled as Start building!
If building success, you will seeĀ this
4. Deploy to Firebase Hosting fromĀ CircleCI
This step will allow us to deploy our project automatically to Firebase Hosting. Generate a Firebase CI token.
$ firebase login:ci
Visit this URL on any device to log in:https://accounts.google.com/o/oauth2/auth?client_id=563584335869-fgrhgmd
Waiting for authentication...
ā Success! Use this token to login on a CI server:
1/qV80aq1eE06WJkIkwEmkkoU12iIKq2DYOV2gNiTmg
Example: firebase deploy --token "$FIREBASE_TOKEN"
Go to project setting
Project Setting
Go to environtment variables
Environtment Variables menu atĀ CricleCI
Add variable FIREBASE_TOKEN
Ā , fill with the token value that we have got before.
OpenĀ .circleci/config.yml
Ā . Add this line to the bottom of config.yml
- run:name: 'Build Project'command: 'yarn build'- run:name: 'Deploy to Firebase Hosting'command: './node_modules/.bin/firebase deploy --token=$FIREBASE_TOKEN'
- Add firebase tools as dev dependency
yarn add firebase-tools --dev
- Push changes to github.
- Everytime you push change at github, CircleCI will do deployment
- And success
We have now setup a continuous deployment to deploy your project to Firebase Hosting.
If you are stuck at any point in the sections above or if I have made a mistake somewhere or missed an essential point, do let me know in the comments.
If this was useful, please click the clap š button down below a few times to show your support! ā¬ā¬ā¬Ā šš¼
My OtherĀ Posts
Arryangga Aliev Pratamaputraāāā - Medium_Read writing from Arryangga Aliev Pratamaputraāāā on Medium. āāāFront End Developer - React Enthusiast. Every dayā¦_medium.com