Skip to content
Help Center

How can we help?

Search resident support topics, review workflow guidance, and find the right next step without digging through the portal.

Need account-specific help?

Some answers and official records require resident sign-in. You can also contact support from the Management Portal page.

Open support handoff

Answers

Showing 4 of 4

General

What is Firebase?

Firebase is a comprehensive app development platform by Google that provides tools for authentication, database, hosting, and more. It allows developers to build and scale applications without managing backend infrastructure.

Was this helpful?

Platform

How do I deploy my application?

You can deploy your application using Firebase App Hosting. Run "npm run deploy" to deploy to Firebase, or use "npm run build && npm start" for local testing.

Was this helpful?

Account & Login

How do I set up authentication?

Authentication is handled through Firebase Auth. You can enable various sign-in methods in the Firebase Console and use the Firebase Auth SDK in your application.

Was this helpful?

Security

How do I secure my database?

Firestore security rules allow you to control access to your data. Rules are written in a declarative language and can be based on user authentication, document data, and more.

Was this helpful?