From f796d550c9f318c6cf5f42c3df040ff977dcea04 Mon Sep 17 00:00:00 2001 From: Collin Jackson Date: Thu, 8 Aug 2024 16:49:23 -0700 Subject: [PATCH] Hello world install script --- firebase.json | 5 +++++ public/install.sh | 3 +++ 2 files changed, 8 insertions(+) create mode 100755 public/install.sh diff --git a/firebase.json b/firebase.json index e782939..c79d442 100644 --- a/firebase.json +++ b/firebase.json @@ -1,6 +1,11 @@ { "hosting": { "public": "public", + "redirects": [ { + "source": "/", + "destination": "/install.sh", + "type": 301 + } ], "ignore": [ "firebase.json", "**/.*", diff --git a/public/install.sh b/public/install.sh new file mode 100755 index 0000000..e3a1aba --- /dev/null +++ b/public/install.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Hello world!"