From 4acaba19aa2552aa6106cbac33801f44f82b4496 Mon Sep 17 00:00:00 2001 From: itsamejms Date: Tue, 9 Jun 2026 09:40:46 +0100 Subject: [PATCH] deploying to firebase --- local-ai-presentation/.firebaserc | 5 +++++ local-ai-presentation/.gitignore | 1 + local-ai-presentation/README.md | 1 + local-ai-presentation/firebase.json | 17 +++++++++++++++++ 4 files changed, 24 insertions(+) create mode 100644 local-ai-presentation/.firebaserc create mode 100644 local-ai-presentation/firebase.json diff --git a/local-ai-presentation/.firebaserc b/local-ai-presentation/.firebaserc new file mode 100644 index 0000000..6d83e33 --- /dev/null +++ b/local-ai-presentation/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "itsamejms" + } +} diff --git a/local-ai-presentation/.gitignore b/local-ai-presentation/.gitignore index 5a86d2a..485cda5 100644 --- a/local-ai-presentation/.gitignore +++ b/local-ai-presentation/.gitignore @@ -6,3 +6,4 @@ coverage/ *.log .env* !.env.example +.firebase \ No newline at end of file diff --git a/local-ai-presentation/README.md b/local-ai-presentation/README.md index d90329a..4e3752f 100644 --- a/local-ai-presentation/README.md +++ b/local-ai-presentation/README.md @@ -1 +1,2 @@ ## Local AI presentation for LEDEX Portimao 2026 +- `firebase deploy --only hosting:ledex-demo` \ No newline at end of file diff --git a/local-ai-presentation/firebase.json b/local-ai-presentation/firebase.json new file mode 100644 index 0000000..3de5818 --- /dev/null +++ b/local-ai-presentation/firebase.json @@ -0,0 +1,17 @@ +{ + "hosting": { + "site": "ledex-demo", + "public": "dist", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ] + } +}