{"id":24349265,"url":"https://github.com/allowexe/chorechamp","last_synced_at":"2026-04-01T19:02:36.808Z","repository":{"id":241015891,"uuid":"803992499","full_name":"Allowexe/ChoreChamp","owner":"Allowexe","description":"A task manager application that allows users to register, log in, create, update, delete, and view tasks.","archived":false,"fork":false,"pushed_at":"2024-05-22T10:13:01.000Z","size":584,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-28T01:30:13.652Z","etag":null,"topics":["expo","expressjs","feri","mongodb","nodejs","react-native","student-project"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Allowexe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-05-21T18:45:39.000Z","updated_at":"2024-05-22T10:13:05.000Z","dependencies_parsed_at":"2025-01-18T12:37:46.356Z","dependency_job_id":"c4f0f995-eb8e-46ca-ae67-e00ee3a3d711","html_url":"https://github.com/Allowexe/ChoreChamp","commit_stats":null,"previous_names":["allowexe/chorechamp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Allowexe/ChoreChamp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allowexe%2FChoreChamp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allowexe%2FChoreChamp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allowexe%2FChoreChamp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allowexe%2FChoreChamp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Allowexe","download_url":"https://codeload.github.com/Allowexe/ChoreChamp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Allowexe%2FChoreChamp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291016,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["expo","expressjs","feri","mongodb","nodejs","react-native","student-project"],"created_at":"2025-01-18T12:37:23.037Z","updated_at":"2026-04-01T19:02:36.735Z","avatar_url":"https://github.com/Allowexe.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Manager Application\n### /!\\ THIS IS A STUDENT PROJECT, IT MAY HAVE SOME ISSUES /!\\\n\n## Project Overview\n\nThis is a task manager application that allows users to register, log in, create, update, delete, and view tasks. The project is divided into two parts:\n\n- **Backend**: Built with Node.js, Express.js, and MongoDB.\n- **Frontend**: Built with React Native and Expo.\n\n## Backend Setup\n\n1. **Navigate to the backend directory**:\n\n   ```sh\n   cd backend\n   ```\n\n2. **Install dependencies**:\n\n   ```sh\n   npm install\n   ```\n\n3. **Create a `.env` file for environment variables**:\n\n   ```sh\n   touch .env\n   ```\n\n   Add the following variables to the `.env` file:\n\n   ```\n   MONGO_URI=your_mongo_db_uri\n   JWT_SECRET=your_jwt_secret\n   ```\n\n4. **Start the backend server**:\n   ```sh\n   nodemon server.js\n   ```\n\nThe backend server should now be running on `http://localhost:3000`.\n\n## Frontend Setup\n\n1. **Navigate to the frontend directory**:\n\n   ```sh\n   cd frontend\n   ```\n\n2. **Install dependencies**:\n\n   ```sh\n   npm install\n   ```\n\n3. **Setup the API's IP address**:\n\n   Add your local IP address into the `api.js` file:\n\n   ```js\n   const API_URL = \"http://192.168.X.X:3000\"; // Your IP address here\n   ```\n\n4. **Start the Expo development server**:\n\n   ```sh\n   npx expo start\n   ```\n\n5. **Run the app on your device**:\n   - For iOS: Use the Expo Go app to scan the QR code displayed in the terminal or browser.\n   - For Android: Use the Expo Go app to scan the QR code displayed in the terminal or browser.\n\n## Usage\n\n### Register a New User\n\n1. Open the app on your device.\n2. Navigate to the registration screen.\n3. Enter your username, email, and password.\n4. Click the \"Register\" button.\n\n### Log In\n\n1. Open the app on your device.\n2. Navigate to the login screen.\n3. Enter your email and password.\n4. Click the \"Login\" button.\n\n### Create a Task\n\n1. After logging in, navigate to the task list screen.\n2. Click the \"Create Task\" button.\n3. Enter the task title and description.\n4. Click the \"Save Task\" button.\n\n### View Task Details\n\n1. On the task list screen, click on a task to view its details.\n\n### Update Task Status\n\n1. On the task detail screen, click the button to change the task status between \"pending\" and \"done\".\n\n### Delete a Task\n\n1. On the task detail screen, click the \"Delete Task\" button.\n\n## Technologies Used\n\n- **Backend**:\n\n  - Node.js\n  - Express.js\n  - MongoDB\n  - Mongoose\n  - JWT for authentication\n\n- **Frontend**:\n  - React Native\n  - Expo\n  - Axios for API requests\n\n## License\n\nThis project is licensed under the MIT license - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallowexe%2Fchorechamp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallowexe%2Fchorechamp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallowexe%2Fchorechamp/lists"}