adicionar condóminos

This commit is contained in:
2026-04-23 10:40:57 +01:00
parent 842dd08f73
commit c251549f63
4 changed files with 181 additions and 105 deletions

View File

@@ -1,16 +1,18 @@
import { initializeApp } from "https://www.gstatic.com/firebasejs/12.1.0/firebase-app.js";
import { getFirestore } from "https://www.gstatic.com/firebasejs/12.1.0/firebase-firestore.js";
import { getDatabase } from "https://www.gstatic.com/firebasejs/12.1.0/firebase-database.js";
const firebaseConfig = {
apiKey: "SUA_API_KEY",
authDomain: "SEU_PROJETO.firebaseapp.com",
projectId: "SEU_PROJECT_ID",
storageBucket: "SEU_PROJETO.appspot.com",
messagingSenderId: "SEU_ID",
appId: "SEU_APP_ID"
apiKey: "AQUI_TUA_API_KEY",
authDomain: "AQUI.firebaseapp.com",
databaseURL: "https://condomaster-pro-ed9af-default-rtdb.europe-west1.firebasedatabase.app",
projectId: "condomaster-pro-ed9af",
storageBucket: "condomaster-pro-ed9af.appspot.com",
messagingSenderId: "AQUI",
appId: "AQUI"
};
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);
const db = getDatabase(app);
export { app, db };
export { db };