TellMeo is an intelligent task planner and management tool with a voice chatbot interface. The platform integrates with Google Calendar to fetch and display events, allows users to add tasks, and provides real-time reminders. Additionally, it features an AI chat interface powered by OpenAI to assist users with their queries.
- User Authentication and Authorization: Secure login and registration system.
- Task Management: Create, Read, Update, and Delete (CRUD) operations for tasks.
- Google Calendar Integration: Fetch and display calendar events.
- Real-Time Reminders: Get notified about your tasks in real-time.
- AI Chatbot Interface: Powered by OpenAI to assist users with their queries.
- Responsive and User-Friendly UI: Accessible on various devices and screen sizes.
- Frontend: React
- Backend: Node.js
- Database: MongoDB
- AI: OpenAI API
- Calendar Integration: Google Calendar API
- Authentication: JWT (JSON Web Token)
/jarvis
├── .env
├── .gitignore
├── /jarvis-ui (React frontend)
│ ├── /public
│ │ └── index.html
│ ├── /src
│ │ ├── /components
│ │ │ ├── TaskList.js
│ │ │ ├── AddTask.js
│ │ │ ├── CustomCard.js
│ │ │ ├── Header.js
│ │ │ ├── Chat.js
│ │ ├── /pages
│ │ │ ├── Home.js
│ │ │ ├── Calendar.js
│ │ │ ├── Chat.js
│ │ │ ├── Login.js
│ │ │ ├── Register.js
│ │ ├── /context
│ │ │ ├── AuthContext.js
│ │ ├── App.js
│ │ ├── api.js
│ │ ├── index.js
├── server.js (Node.js server)
├── package.json
├── /models
│ ├── User.js
│ ├── Chat.js
├── /routes
│ ├── auth.js
│ ├── tasks.js
│ ├── events.js
│ ├── interactions.js
├── /middleware
│ └── auth.js
- Node.js
- MongoDB
- Google Cloud account with Calendar API enabled
- OpenAI API key
-
Clone the repository:
git clone https://github.com/EsanRAHIMI/TellMeo.git cd TellMeo -
Install dependencies for the backend:
npm install
-
Install dependencies for the frontend:
cd jarvis-ui npm install -
Create a
.envfile in the root directory and add the following variables:MONGODB_URI='your_mongodb_uri' OPENAI_API_KEY='your_openai_api_key' GOOGLE_CLIENT_ID='your_google_client_id' GOOGLE_CLIENT_SECRET='your_google_client_secret' OPENAI_ORGANIZATION_ID='your_openai_organization_id' OPENAI_PROJECT_ID='your_openai_project_id' JWT_SECRET='your_jwt_secret'
-
Start the backend server:
npm start
-
Start the frontend development server:
cd jarvis-ui npm start
- Open your browser and navigate to
http://localhost:3000. - Register a new account or log in with an existing account.
- Add, edit, or delete tasks.
- Integrate with Google Calendar to fetch and display events.
- Use the AI chatbot for assistance.
We welcome contributions to enhance TellMeo! Follow these steps to contribute:
- Fork the repository.
- Create your feature branch (
git checkout -b feature/your-feature). - Commit your changes (
git commit -m 'Add some feature'). - Push to the branch (
git push origin feature/your-feature). - Open a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.
Esan - EhsanRahimi@live.com
Project Link: https://github.com/EsanRAHIMI/TellMeo