{"id":24739084,"url":"https://github.com/mcyldz/quest-app","last_synced_at":"2026-04-13T10:31:38.556Z","repository":{"id":260075421,"uuid":"879934699","full_name":"mcyldz/quest-app","owner":"mcyldz","description":"QuestApp is a backend only application built with Java and the Spring Framework, designed to support essential social interaction features.","archived":false,"fork":false,"pushed_at":"2024-10-29T11:03:02.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T18:45:51.598Z","etag":null,"topics":["java","java-17","mysql","postgresql","spring-boot","spring-data-jpa","spring-mvc","spring-security"],"latest_commit_sha":null,"homepage":"","language":"Java","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/mcyldz.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-28T20:10:20.000Z","updated_at":"2025-02-13T22:01:58.000Z","dependencies_parsed_at":"2024-10-29T12:32:14.536Z","dependency_job_id":null,"html_url":"https://github.com/mcyldz/quest-app","commit_stats":null,"previous_names":["mcyldz/questapp","mcyldz/quest-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mcyldz/quest-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcyldz%2Fquest-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcyldz%2Fquest-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcyldz%2Fquest-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcyldz%2Fquest-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcyldz","download_url":"https://codeload.github.com/mcyldz/quest-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcyldz%2Fquest-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31748948,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["java","java-17","mysql","postgresql","spring-boot","spring-data-jpa","spring-mvc","spring-security"],"created_at":"2025-01-27T22:56:39.857Z","updated_at":"2026-04-13T10:31:38.537Z","avatar_url":"https://github.com/mcyldz.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QuestApp\nQuestApp is a backend only application built with Java and the Spring Framework, designed to support essential social interaction features. It enables user management, post creation, commenting on posts, and liking posts. The backend handles data management and processes user interactions efficiently.\n\n## Technologies Used\n\n- Java\n- Spring Framework\n- Spring Boot\n- Hibernate\n- MySQL\n\n## Table of Contents\n\n- [Technologies Used](#technologies-used)\n- [Features](#features)\n- [API Endpoints](#api-endpoints)\n  - [User Management](#user-management)\n  - [Post Management](#post-management)\n  - [Comment Management](#comment-management)\n  - [Like Management](#like-management)\n- [Database Configuration](#database-configuration)\n\n## Features\n\n- User registration and authentication\n- Create, read, update, and delete (CRUD) operations for posts and comments\n- Like functionality for posts\n- Comprehensive API for user, post, comment, and like management\n\n## API Endpoints\n\n### User Management\n- `GET /rest/api/users`: List all users\n- `GET /rest/api/users/{id}`: Retrieve a specific user by ID\n- `GET /rest/api/activity/{userId}`: Activities a user\n- `POST /rest/api/users`: Create a new user\n- `PUT /rest/api/users/{id}`: Update user information\n- `DELETE /rest/api/users/{id}`: Delete a user\n\n### Post Management\n- `GET /rest/api/posts`: List all posts\n- `GET /rest/api/posts/{id}`: Retrieve a specific post by ID\n- `POST /rest/api/posts`: Create a new post\n- `PUT /rest/api/posts/{id}`: Update a post by ID\n- `DELETE /rest/api/posts/{id}`: Delete a post\n\n![get_posts](https://github.com/user-attachments/assets/cdc028aa-bf55-49e0-886a-35f783744480)\n\n![put_post](https://github.com/user-attachments/assets/3dc30e32-0772-463c-968e-e1383707b26f)\n\n### Comment Management\n- `GET /rest/api/comments`: List all comments\n- `GET /rest/api/comments/{postId}`: List comments for a specific post\n- `GET /rest/api/comments/{userId}`: List comments for a specific user\n- `GET /rest/api/comments/{id}`: Retrieve a specific comment by ID\n- `POST /rest/api/comments`: Add a comment to a post\n- `PUT /rest/api/comments/{id}`: Update a comment\n- `DELETE /rest/api/comments/{id}`: Delete a comment\n\n![post_comment](https://github.com/user-attachments/assets/011eaadb-8c41-4596-aac6-39e82a89440a)\n\n\n### Like Management\n- `GET /rest/api/likes`: List all likes for a specific post\n- `GET /rest/api/{userId}`: List likes for a specific user\n- `GET /rest/api/{postId}`: List likes for a specific post\n- `POST /rest/api/likes`: Like a post\n- `DELETE /rest/api/likes/{id}`: Remove a like from a post\n\n### Database Configuration\nThis project uses MySQL as the database. To configure the database, follow these steps:\n\n1. Install MySQL and create a database:\n```sql\n  CREATE DATABASE QuestApp;\n```\n2. Configure the connection settings in application.properties:\n```\nspring.application.name=APPLICATION_NAME\n\nspring.datasource.url=jdbc:mysql://localhost:3306/DATABASE_NAME?useSSL=false\nspring.datasource.username=USERNAME\nspring.datasource.password=PASSWORD\n\nspring.jpa.database-platform=org.hibernate.dialect.MySQLDialect\nspring.jpa.hibernate.ddl-auto=create\nspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver\n```\n\n\n   \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcyldz%2Fquest-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcyldz%2Fquest-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcyldz%2Fquest-app/lists"}