Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.11 KB

building.md

File metadata and controls

31 lines (19 loc) · 1.11 KB

Building and Deploying to Production

Overview

As this application was build using the Vue CLI 3 we follow the specifications on the official documentation about deploying with Firebase.

Building a Production Version

First of all, you will need to have the Firebase CLI configured and you Firebase project setup.

With both ready, you will need to setup your .env.production file, that is used by the Vue CLI during the production build.

For more information about environment files please see the environment variables section.

Deploying

# this will deploy all the application, including source code and Firestore rules.
$ yarn deloy

# this will deploy just the application.
$ yarn deploy:hosting

# this will deploy just the Firestore rules.
$ yarn deploy:firestore