{"id":23908437,"url":"https://github.com/bmukesh23/edutrack","last_synced_at":"2026-04-12T17:38:43.893Z","repository":{"id":259484478,"uuid":"875718315","full_name":"bmukesh23/Edutrack","owner":"bmukesh23","description":"🎓 AI-based LMS platform. [Under Work]","archived":false,"fork":false,"pushed_at":"2025-02-17T14:25:54.000Z","size":35984,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-17T14:32:37.043Z","etag":null,"topics":["axios","firebase-auth","flask","gemini-2-0-flash","jwt","pymongo","python3","react","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://edutrack-ai.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bmukesh23.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-20T17:10:25.000Z","updated_at":"2025-02-17T14:25:57.000Z","dependencies_parsed_at":"2025-02-17T14:37:16.807Z","dependency_job_id":null,"html_url":"https://github.com/bmukesh23/Edutrack","commit_stats":null,"previous_names":["bmukesh23/edutrack"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmukesh23%2FEdutrack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmukesh23%2FEdutrack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmukesh23%2FEdutrack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmukesh23%2FEdutrack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmukesh23","download_url":"https://codeload.github.com/bmukesh23/Edutrack/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240332796,"owners_count":19784896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["axios","firebase-auth","flask","gemini-2-0-flash","jwt","pymongo","python3","react","tailwindcss","typescript"],"created_at":"2025-01-05T04:37:34.701Z","updated_at":"2026-04-12T17:38:43.885Z","avatar_url":"https://github.com/bmukesh23.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🎓 Edutrack\nAn AI-based Learning Management System (LMS) that adapts to each user’s skill level and learning pace, ensuring a customized and effective learning experience. Built with React.ts, Spring Boot and Gemini Flash 2.5.\n\n## 📦 Technologies\n\n- `React`\n- `Typescript`\n- `Tailwind CSS`\n- `Spring Boot`\n- `PostgreSQL`\n- `Docker`\n\n## ✨ Features\n\n- **AI-Generated Learning Paths:** Based on initial assessments to personalize learning.  \n\n- **Personalized Topic Recommendations:** Focus on strengthening weak areas.  \n\n- **Ask AI Feature:** Get instant answers to coding \u0026 learning queries.  \n\n- **Real-Time Progress Tracking:** Monitor performance with detailed analytics.  \n\n- **User Authentication:** Users can securely sign in and access notes with Firebase Auth integrated with JWT.\n\n## 🚦Running the project\n\n### Prerequisites\n\nBefore you begin, ensure you have the following installed on your machine:\n\n- [Node.js](https://nodejs.org/): Make sure to install Node.js, which includes npm (Node Package Manager).\n- [PostgreSQL](https://www.postgresql.org/): Database used to store application data. \n- [Docker](https://www.docker.com/): Optional tool to containerize and run the backend.\n\n\n### Steps\n\n1. **Clone the repository:**\n    ```bash\n    git clone https://github.com/bmukesh23/Edutrack.git\n    ```\n\n2. **Navigate to the project directory:**\n    ```bash\n    cd Edutrack\n    ```\n\n3. **Install Dependencies:**\n    ```bash\n    cd client\n    npm install\n    ```\n\n4. **Set Environment Variables:**\n    1. Create a `.env` file in the root of the `client` folder of the project.\n    2. Add the following environment variables and replace the values with your own:\n\n    ```env\n    VITE_FB_API_KEY=\n    VITE_FB_AUTH=\n    VITE_FB_PROJECT=\n    VITE_FB_STORAGE=\n    VITE_FB_MESSAGING=\n    VITE_FB_APP=\n    VITE_FB_MEASUREMENT=\n    VITE_BACKEND_URL=\n    ```\n\n    1. Create a `.env` file in the `server` folder.\n    2. Add the following environment variables and replace the values with your own:\n\n    ```env\n    DATASOURCE_URL=\n    DATASOURCE_USERNAME=\n    DATASOURCE_PASSWORD=\n    JWT_SECRET=\n    YOUTUBE_API_KEY=\n    GOOGLE_API_KEY=\n    ```\n\n5. **Run the application:**\n    ```bash\n    cd client\n    npm run dev\n    ```\n\n    ```bash\n    cd server\n    ./mvnw spring-boot:run\n    ```\n\n6. **Access the App:**\n- By default, the frontend will be available at [http://localhost:5173](http://localhost:5173) and Backend will be available at [http://localhost:8080](http://localhost:8080) \n\n- Once both servers are running:\n  Open your web browser and go to [http://localhost:5173](http://localhost:5173) and Ensure the backend is accessible.\n\n---\n\n## 🐳 Running backend with Docker \n\n1. Build the Docker image:\n    ```bash\n    docker build -t edutrack .\n    ```\n\n2. Run the container:\n    ```bash\n    docker run -p 8080:8080 --env-file .env edutrack\n    ```\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmukesh23%2Fedutrack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmukesh23%2Fedutrack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmukesh23%2Fedutrack/lists"}