{"id":30920395,"url":"https://github.com/ahmed1cb/codequery","last_synced_at":"2026-05-06T06:34:52.562Z","repository":{"id":311594356,"uuid":"1044116313","full_name":"AHMED1CB/codeQuery","owner":"AHMED1CB","description":" **CodeQuery** is a specialized **Q\u0026A platform for developers**.   It allows programmers to ask coding questions, share answers, and earn reputation through community-driven voting and badges.","archived":false,"fork":false,"pushed_at":"2025-09-03T12:49:55.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-03T14:40:06.290Z","etag":null,"topics":["ask-question","js","mysql","php","php-project","qa-platform","tailwindcss","twig-templates"],"latest_commit_sha":null,"homepage":"","language":"Twig","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/AHMED1CB.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,"zenodo":null}},"created_at":"2025-08-25T07:57:40.000Z","updated_at":"2025-09-03T12:49:59.000Z","dependencies_parsed_at":"2025-08-25T12:40:50.715Z","dependency_job_id":"2e57e192-fe9b-4d55-9d36-839dea0fc8d3","html_url":"https://github.com/AHMED1CB/codeQuery","commit_stats":null,"previous_names":["ahmed1cb/codequery"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AHMED1CB/codeQuery","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED1CB%2FcodeQuery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED1CB%2FcodeQuery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED1CB%2FcodeQuery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED1CB%2FcodeQuery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AHMED1CB","download_url":"https://codeload.github.com/AHMED1CB/codeQuery/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AHMED1CB%2FcodeQuery/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017053,"owners_count":26085949,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ask-question","js","mysql","php","php-project","qa-platform","tailwindcss","twig-templates"],"created_at":"2025-09-10T01:18:21.375Z","updated_at":"2025-10-13T21:13:35.921Z","avatar_url":"https://github.com/AHMED1CB.png","language":"Twig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 💡 CodeQuery - Programming Q\u0026A Platform\n\n**CodeQuery** is a specialized **Q\u0026A platform for developers**.  \nIt allows programmers to ask coding questions, share answers, and earn reputation through community-driven voting and badges.\n\n---\n\n## 🚀 Features\n\n- 👤 **Authentication**  \n  - User registration, login, and logout.  \n  - Profile page with avatar and bio.  \n\n- ❓ **Questions**  \n  - Post new questions with title, body, and tags.  \n  - Browse and search questions by keywords or tags.  \n  - View counter for each question.  \n\n- 💬 **Answers**  \n  - Submit answers to questions.  \n  - Mark an answer as \"Accepted\".  \n  - Order answers by votes.  \n\n- 🏷 **Tags**  \n  - Use tags like [php], [javascript], [python].  \n  - Dedicated page for each tag with related questions.  \n\n- 👍 **Voting \u0026 Reputation**  \n  - Upvote/downvote questions and answers.  \n  - Reputation system for active contributors.  \n  - Badges (Bronze, Silver, Gold) for milestones.  \n\n- 💬 **Comments**  \n  - Comment on questions and answers.  \n\n- 🔔 **Notifications**  \n  - Get notified when someone answers your question.  \n  - Get notified when your answer is accepted or upvoted.  \n\n---\n\n## 📌 API Routes (Example)\n\n\u003e Example routes in RESTful API style. Will Edit on Future\n\n### 🔑 Authentication\n- `POST /register` → Create a new account.  \n- `POST /login` → User login.  \n- `POST /logout` → User logout.  \n- `GET /profile/{id}` → View user profile.  \n- `PUT /profile/{id}` → Update profile.  \n\n### ❓ Questions\n- `GET /questions` → List all questions.  \n- `GET /questions/{id}` → View question details.  \n- `POST /questions` → Post a new question.  \n- `PUT /questions/{id}` → Edit a question.  \n- `DELETE /questions/{id}` → Delete a question.  \n\n### 💬 Answers\n- `POST /questions/{id}/answers` → Add an answer.  \n- `PUT /answers/{id}` → Edit an answer.  \n- `DELETE /answers/{id}` → Delete an answer.  \n- `POST /answers/{id}/accept` → Accept an answer.  \n\n### 👍 Voting\n- `POST /questions/{id}/vote` → Vote on a question.  \n- `POST /answers/{id}/vote` → Vote on an answer.  \n\n### 🏷 Tags\n- `GET /tags` → List all tags.  \n- `GET /tags/{name}` → View questions by tag.  \n\n### 💬 Comments\n- `POST /questions/{id}/comments` → Add comment to a question.  \n- `POST /answers/{id}/comments` → Add comment to an answer.  \n- `DELETE /comments/{id}` → Delete a comment.  \n\n### 🔔 Notifications\n- `GET /notifications` → List all user notifications.  \n\n---\n\n## ⚙️ Tech Stack\n\n- **Backend:** PHP And Libraries  \n- **Database:** MySQL/MariaDB.  \n- **Frontend:** HTML, CSS, JavaScript, Tailwind , sweetalert , highlightjs\n\n---\n\n## 📜 License\nMIT-License\nOpen-source project — feel free to use, modify, and improve 🚀- (Im Using Ai To Improve The Ui)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmed1cb%2Fcodequery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmed1cb%2Fcodequery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmed1cb%2Fcodequery/lists"}