Static

Deployment

Objectives

  • Describe the differences between a static and dynamic web site.
  • Use Firebase Command Line Tools to deploy web sites.

Static vs Dynamic

sites served using fixed, static assets (your front end)

site with assets generated on a server (server side language or database)

Use Cases

Deploying simple websites/applications/games 

Deploying CDNs/files

Deploying your front end separately from your back end

Prep

Create an account on firebase.com
(use the google login feature)

Intall firebase CLI tools

$ npm install -g firebase-tools

Static Deployment

By Dize Hacioglu

Static Deployment

  • 275