{"id":20245720,"url":"https://github.com/lucasrznd/sorteador-web","last_synced_at":"2026-04-11T21:38:04.915Z","repository":{"id":212142834,"uuid":"730785765","full_name":"lucasrznd/sorteador-web","owner":"lucasrznd","description":"Application for conducting prize draws.","archived":false,"fork":false,"pushed_at":"2024-05-22T19:30:19.000Z","size":14708,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T15:47:03.055Z","etag":null,"topics":["hibernate-jpa","jakartaee","java","jsf","spring-boot","spring-starters"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/lucasrznd.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":"2023-12-12T17:05:29.000Z","updated_at":"2024-05-22T19:30:23.000Z","dependencies_parsed_at":"2024-05-22T20:52:50.980Z","dependency_job_id":null,"html_url":"https://github.com/lucasrznd/sorteador-web","commit_stats":null,"previous_names":["lucasrznd/sorteador-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lucasrznd/sorteador-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasrznd%2Fsorteador-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasrznd%2Fsorteador-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasrznd%2Fsorteador-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasrznd%2Fsorteador-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucasrznd","download_url":"https://codeload.github.com/lucasrznd/sorteador-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucasrznd%2Fsorteador-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272138562,"owners_count":24880128,"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-08-25T02:00:12.092Z","response_time":1107,"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":["hibernate-jpa","jakartaee","java","jsf","spring-boot","spring-starters"],"created_at":"2024-11-14T09:23:31.403Z","updated_at":"2026-04-11T21:37:59.897Z","avatar_url":"https://github.com/lucasrznd.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch2 align=\"center\"\u003ePrize Drawer\u003c/h2\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n![Java](https://img.shields.io/badge/java-%23ED8B00.svg?style=for-the-badge\u0026logo=openjdk\u0026logoColor=white)\n![Spring](https://img.shields.io/badge/spring-%236DB33F.svg?style=for-the-badge\u0026logo=spring\u0026logoColor=white)\n![Hibernate](https://img.shields.io/badge/Hibernate-59666C?style=for-the-badge\u0026logo=Hibernate\u0026logoColor=white)\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n \u003ca href=\"#description\"\u003eDescription\u003c/a\u003e • \n \u003ca href=\"#features\"\u003eFeatures\u003c/a\u003e • \n \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e •\n \u003ca href=\"#contribution\"\u003eContribution\u003c/a\u003e \n\u003c/p\u003e\n\n\u003ch2 id=\"description\"\u003e📙 Description\u003c/h2\u003e\nThis is a project that allows conducting raffles from a list of registered participants. The system offers functionalities for user registration, listeners, partner companies, and prizes.\n\n\u003ch2 id=\"features\"\u003e✨ Features\u003c/h2\u003e\n\n- **User registration** with login and password for access.\n- Registration of **listeners** interested in the raffles.\n- Registration of **partner companies** providing prizes.\n- Conducting raffles from a list of selected participants.\n  \n### Technologies Used\n\n- **Java** and **Hibernate** on the backend.\n- Spring Initializr for project configuration on a server.\n- **JSF** (JavaServer Faces) with **PrimeFaces** for the Frontend.\n\n### Prerequisites\n\n- Java Development Kit (JDK) 17 or higher.\n- Maven for dependency management.\n\n\u003ch2 id=\"installation\"\u003e🛠️ Installation\u003c/h2\u003e\n\n1. Clone the repository to your local environment:\n\n```\ngit clone https://github.com/lucasrznd/sorteador-web.git\n```\n\n2. Configure your database (I used MySQL, but use your preferred database):\n\n```\nspring.datasource.url=${MYSQL_URL}\nspring.datasource.username=${MYSQL_USER}\nspring.datasource.password=${MYSQL_PASSWORD}\nspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver\n```\n\n3. Navigate to the project directory:\n\n```\ncd sorteador-web\n```\n\n4. Compile the project using Maven:\n\n```\nmvn clean install\n```\n\n5. Run the generated JAR file in the target folder or deploy the JAR to your application server.\n\n\u003ch2 id=\"contribution\"\u003e🤝 Contribution\u003c/h2\u003e\n\nContributions are welcome! If you have suggestions, improvements, or find bugs, feel free to open an issue or submit a pull request.\n\n\u003ch2 id=\"author\"\u003e👨🏻‍💻 Author\u003c/h2\u003e\n\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/lucasrznd\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/101664450?v=4\u0026v=\" width=\"115px;\" alt=\"Lucas Rezende\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLucas Rezende\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr/\u003e\u003ca title=\"Código\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasrznd%2Fsorteador-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucasrznd%2Fsorteador-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucasrznd%2Fsorteador-web/lists"}