From f0a3659bc27e78b8fff9f7b0b85144c13f42cfda Mon Sep 17 00:00:00 2001 From: Javinator9889 Date: Mon, 25 May 2020 11:10:13 +0200 Subject: [PATCH] Included firebase project files --- .firebaserc | 5 +++++ firebase.json | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .firebaserc create mode 100644 firebase.json diff --git a/.firebaserc b/.firebaserc new file mode 100644 index 0000000..f92f8a3 --- /dev/null +++ b/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "handwashing" + } +} diff --git a/firebase.json b/firebase.json new file mode 100644 index 0000000..9c5b99f --- /dev/null +++ b/firebase.json @@ -0,0 +1,16 @@ +{ + "functions": { + "predeploy": [ + "npm --prefix \"$RESOURCE_DIR\" run lint", + "npm --prefix \"$RESOURCE_DIR\" run build" + ] + }, + "hosting": { + "public": "public", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ] + } +}