Awesome Firebase/Firestore-based CMS. The missing admin panel for your Firebase project!
FireCMS is a headless CMS and admin panel designed by developers for developers. It seamlessly integrates with Firebase and Firestore, but is also compatible with any backend. With FireCMS, you can effortlessly generate CRUD views based on your configuration. It is simple to set up for standard cases and easy to extend and customize for more specific needs. FireCMS covers a wide range of basic and advanced use cases, allowing you to create your own views or modify existing ones.
To install FireCMS, follow these steps:
npm install firebase @react-firebase/firestore react-router-dom @mui/material formik yup
import { FirebaseAppProvider } from '@react-firebase/app';
import { FirestoreProvider } from '@react-firebase/firestore';
import { FireCMS } from 'firecms';
// add additional imports as needed
const firebaseConfig = {
// your Firebase configuration
};
function App() {
return (
<FirebaseAppProvider firebaseConfig={firebaseConfig}>
<FirestoreProvider {...firebaseConfig} firebase={firebase}>
<FireCMS />
</FirestoreProvider>
</FirebaseAppProvider>
);
}
export default App;
FireCMS is a powerful headless CMS and admin panel that seamlessly integrates with Firebase and Firestore. It offers exceptional features such as an efficient spreadsheet view, robust forms with customization options, and a flexible authentication and permissions system. With FireCMS, developers can easily build CMS/admin tools while providing a user-friendly interface for marketers and content managers.