A web application to (1) manage a playlist for digital signage, and (2) drive a browser that displays the signage.
These instructions use the Yarn package manager. See
-
Install
node
andyarn
. On macOS:brew install node yarn
. -
Install packages: execute
yarn
. -
Create a Firebase account. Create a file
src/config/firebase.json
with the configuration information. It should look likesrc/config/firebase.json.template
.
Execute yarn start
.
[These instructions deploy as a static single-page application on Firebase.]
-
yarn global add firebase-tools
. -
firebase init
. Don't overwrite existing files.
yarn deploy
These instructions use yarn. To use npm
instead, use the following substitutions.
yarn | npm |
---|---|
yarn |
npm install |
yarn start |
npm start |
yarn global add firebase-tools |
npm install -g firebase-tools |
yarn deploy |
npm run deploy |