Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 849 Bytes

DEVELOPMENT.md

File metadata and controls

59 lines (40 loc) · 849 Bytes

Development Guide

Dependency

  • Nodejs
  • Firebase cli
npm install -g firebase-tools

Start with firebase

Firebase login

Please login with your google account

firebase login

Init firebase with existing project

firebase init

choose your project name. ex: overpartylab

Develop web portal

We use React.js to build our webapp. Source code are in /app folder.

Install dependency

yarn install

Run the react app in developing mode

yarn start

Build react file

yarn build

Deploy web portal

The deploy script will build frontend code first. Then run the deploy by using firebase-cli.

yarn deploy

Reference