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" + } + ] + } +}