Hello world install script

This commit is contained in:
Collin Jackson 2024-08-08 16:49:23 -07:00
parent 780ce655ae
commit f796d550c9
2 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,11 @@
{ {
"hosting": { "hosting": {
"public": "public", "public": "public",
"redirects": [ {
"source": "/",
"destination": "/install.sh",
"type": 301
} ],
"ignore": [ "ignore": [
"firebase.json", "firebase.json",
"**/.*", "**/.*",

3
public/install.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "Hello world!"