A React-based task manager application integrated with Firebase for real-time database functionality.
- Add, edit, delete, and filter tasks.
- Uses Firebase Firestore as the backend.
- Hosted on Firebase.
-
Clone the repository:
git clone https://github.com/<your-username>/<your-repository-name>.git cd <your-repository-name>
-
Install dependencies:
npm install
-
Create a .env file in the root directory and add your Firebase configuration:
REACT_APP_FIREBASE_API_KEY=<your-api-key> REACT_APP_FIREBASE_AUTH_DOMAIN=<your-auth-domain> REACT_APP_FIREBASE_PROJECT_ID=<your-project-id> REACT_APP_FIREBASE_STORAGE_BUCKET=<your-storage-bucket> REACT_APP_FIREBASE_MESSAGING_SENDER_ID=<your-messaging-sender-id> REACT_APP_FIREBASE_APP_ID=<your-app-id>
-
Start the application:
npm start
-
Access the application at http://localhost:3000.