{"id":16998549,"url":"https://github.com/sivaprasadreddy/techbuzz","last_synced_at":"2026-03-11T13:17:50.374Z","repository":{"id":162422715,"uuid":"587573554","full_name":"sivaprasadreddy/techbuzz","owner":"sivaprasadreddy","description":"A place for techie to share knowledge, blog posts, tech news etc","archived":false,"fork":false,"pushed_at":"2025-04-10T15:51:32.000Z","size":1207,"stargazers_count":54,"open_issues_count":4,"forks_count":20,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-20T06:04:13.172Z","etag":null,"topics":["docker","docker-compose","java","maven","postgresql","spring-boot","thymeleaf"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sivaprasadreddy.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":"2023-01-11T04:07:29.000Z","updated_at":"2025-01-08T03:53:39.000Z","dependencies_parsed_at":"2023-07-11T02:04:21.640Z","dependency_job_id":"793ffc8a-74a8-48a8-ad86-6562e1be99a6","html_url":"https://github.com/sivaprasadreddy/techbuzz","commit_stats":{"total_commits":147,"total_committers":8,"mean_commits":18.375,"dds":0.2108843537414966,"last_synced_commit":"b7a989c24aa2f257e5908332cd5918a80a080be1"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sivaprasadreddy/techbuzz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivaprasadreddy%2Ftechbuzz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivaprasadreddy%2Ftechbuzz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivaprasadreddy%2Ftechbuzz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivaprasadreddy%2Ftechbuzz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sivaprasadreddy","download_url":"https://codeload.github.com/sivaprasadreddy/techbuzz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivaprasadreddy%2Ftechbuzz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30382669,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T12:49:11.341Z","status":"ssl_error","status_checked_at":"2026-03-11T12:46:41.342Z","response_time":84,"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":["docker","docker-compose","java","maven","postgresql","spring-boot","thymeleaf"],"created_at":"2024-10-14T04:05:34.604Z","updated_at":"2026-03-11T13:17:50.355Z","avatar_url":"https://github.com/sivaprasadreddy.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TechBuzz\nTechBuzz is a place to share the interesting tech news such as blog posts, videos, release news etc.\n\n[![Build](https://github.com/sivaprasadreddy/techbuzz/actions/workflows/maven.yml/badge.svg)](https://github.com/sivaprasadreddy/techbuzz/actions/workflows/maven.yml)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sivaprasadreddy_techbuzz\u0026metric=alert_status)](https://sonarcloud.io/summary/new_code?id=sivaprasadreddy_techbuzz)\n[![Project Map](https://sourcespy.com/shield.svg)](https://sourcespy.com/github/sivaprasadreddytechbuzz/)\n\n## Features\n* Login with username/password\n* Register with username/password\n* Account activation by email verification\n* View posts by category with pagination\n* Create post\n* Update post\n* Delete post\n* Up/Down vote a post\n\n## Tech Stack\n* Java, SpringBoot\n* Postgres, jOOQ, FlywayDb\n* Spring Security\n* Thymeleaf, Bootstrap, jQuery\n* JUnit 5, Testcontainers\n\n## Architecture Decision Records (ADRs)\n* [Technology selection for UI](adr/ui-tech-selection.md)\n* [Tech selection for database persistence](adr/persistence-library-selection.md)\n\n### Install Prerequisites\n\n1. Install Java, Maven using SDKMAN\n    ```shell\n    $ curl -s \"https://get.sdkman.io\" | bash\n    $ source \"$HOME/.sdkman/bin/sdkman-init.sh\"\n    $ sdk version\n    $ sdk env install\n    $ java -version\n    $ mvn --version\n    ```\n2. Install Docker\n\n    Follow https://docs.docker.com/engine/install/ for installing Docker for your OS.\n\n## HOW TO?\n\n### Run Unit / Integration Tests\n\n```shell\n$ ./mvnw verify\n```\n\n### Format code\n\n```shell\n$ ./mvnw spotless:apply // to formatting code automatically\n$ ./mvnw spotless:check // to verify the code formatting\n```\n\n### Run application locally\n\nIf you want to start the required services (database, mail server) using docker-compose \nand run the application locally:\n\n```shell\n$ ./run.sh start_infra\n$ ./mvnw -pl techbuzz spring-boot:run\n```\n\nInstead, you can simply run `./mvnw -pl techbuzz spring-boot:test-run` which will automatically spin up the required services \nas docker containers using Testcontainers and starts the application.\n\n## Run application using docker-compose\n\n```shell\n$ ./run.sh start\n```\n* App: http://localhost:8080/\n* MailHog: http://localhost:8025/\n\n### Run PlayWright E2E Tests\nMake sure the application is running and configure correct values in `src/test/resources/config.json` file.\n\n```shell\n$ ./mvnw -pl e2e-tests test -DskipTests=false\n```\n\n### Run Gatling Tests\n\n```shell\n$ ./mvnw -pl gatling-tests gatling:test \n```\n\n## Using Taskfile for running various tasks\n[Task](https://taskfile.dev/) is a CLI utility to automate running common tasks.\n\n```shell\n$ task format\n$ task test\n$ task build_image\n$ task start_infra\n$ task stop_infra\n$ task start\n$ task stop_infra\n$ task restart\n```\n## How to contribute?\n* If you find this project interesting, fork/clone it, run the application and provide feedback.\n* If you find any bugs or have suggestions for improvement, then please file an issue.\n* Of course, Pull Requests are most welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsivaprasadreddy%2Ftechbuzz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsivaprasadreddy%2Ftechbuzz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsivaprasadreddy%2Ftechbuzz/lists"}