This is a real-time synchronized task list application built with ReactJS and Firebase. It allows users to create, edit, reorder, and delete tasks with real-time updates across all connected devices. The UI is intuitive, and users can mark tasks as complete or incomplete. The app is perfect for collaborative to-do lists or personal task management.
Demo page: https://task-list.gabrielmotta.dev/
- Real-Time Synchronization: Changes are instantly reflected across all devices connected to the same Firebase instance.
- Drag-and-Drop Reordering: Easily reorder tasks by dragging and dropping.
- Task Management: Create, edit, and delete tasks seamlessly.
- Mark Tasks as Done: Simple checkbox to mark tasks as completed.
- Responsive Design: The UI adapts to different screen sizes, making it usable on mobile devices as well.
- Firebase Backend: Utilizes Firebase for real-time data handling and storage.
- Node.js: Ensure you have Node.js installed. You can download it here.
- Firebase Account: Set up a Firebase project to get your configuration details.
-
Clone the repository:
git clone https://github.com/GabrielMottaDev/task-list.git cd task-list
-
Install dependencies:
npm install
Or with yarn:
yarn install
-
Configure Firebase:
- Modify
src/firebase.js
- Change to your configuration details:
const firebaseConfig = { apiKey: "your-api-key", authDomain: "your-auth-domain", databaseURL: "your-database-url", projectId: "your-project-id", storageBucket: "your-storage-bucket", messagingSenderId: "your-messaging-sender-id", appId: "your-app-id" };
- Modify
In the project directory, you can run:
Runs the app in development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
Note: This is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
To get started with Firebase, follow these steps:
- Go to the Firebase Console.
- Create a new project.
- Set up Firestore for database usage.
- Obtain the Firebase configuration and add it to your
src/firebase.js
file as mentioned above.
You can learn more about React in the React documentation.
For Firebase documentation, visit the Firebase Documentation.
This project is licensed under the MIT License. See the LICENSE file for more information.