{"id":27520398,"url":"https://github.com/manoelpiovesan/cfp-back","last_synced_at":"2026-04-29T14:03:01.643Z","repository":{"id":283181466,"uuid":"950949546","full_name":"manoelpiovesan/cfp-back","owner":"manoelpiovesan","description":"Backend of Call for Papers challenge","archived":false,"fork":false,"pushed_at":"2025-03-21T03:18:39.000Z","size":6106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-19T22:38:36.703Z","etag":null,"topics":["cfp","jwt","quarkus"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/manoelpiovesan.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-03-18T23:48:18.000Z","updated_at":"2025-03-21T03:18:42.000Z","dependencies_parsed_at":"2025-06-11T05:48:42.437Z","dependency_job_id":null,"html_url":"https://github.com/manoelpiovesan/cfp-back","commit_stats":null,"previous_names":["manoelpiovesan/cfp-back"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manoelpiovesan/cfp-back","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manoelpiovesan%2Fcfp-back","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manoelpiovesan%2Fcfp-back/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manoelpiovesan%2Fcfp-back/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manoelpiovesan%2Fcfp-back/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manoelpiovesan","download_url":"https://codeload.github.com/manoelpiovesan/cfp-back/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manoelpiovesan%2Fcfp-back/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32428622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"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":["cfp","jwt","quarkus"],"created_at":"2025-04-18T06:43:54.773Z","updated_at":"2026-04-29T14:03:01.615Z","avatar_url":"https://github.com/manoelpiovesan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Call for Papers\n\nTecnologias usadas:\n\n- Quarkus\n- Postgres\n- Docker\n- Flutter (Frontend)\n\n## Rodando o projeto\n\nAntes de rodar o projeto, você deve ter o Docker e o Docker Compose instalados na sua máquina. Para mais informações,\nacesse a [documentação oficial](https://docs.docker.com/get-docker/).\n\n1. Clone este repositorio\n\n```bash\ngit clone https://github.com/manoelpiovesan/cfp-back.git\n```\n\n⚠️ Nota: O backend está configurado para lidar com autenticação via JWT, então você precisa configurar as chaves\npúblicas e\nprivadas para que o backend possa assinar e verificar os tokens. Para isso, você deve seguir os passos presentes no\nrepositório:\n[manoelpiovesan/quarkus-jwt](https://github.com/manoelpiovesan/quarkus-jwt)\n\n2. Dentro do repositório, faça o build do backend Quarkus\n\n```bash\n./gradlew clean build\n```\n\nPara facilitar o processo de execução do projeto, o frontend, criado em Flutter, foi pré-buildado e está presente no\ndiretório `frontend`.\nVocê pode ver o código fonte do frontend em [manoelpiovesan/cfp-front](https://github.com/manoelpiovesan/cfp-front)\n\n3. Agora suba a stack do projeto com o docker compose\n\n```bash\ndocker compose up\n```\n\nTudo pronto! Agora você pode acessar a documentação da API (Swagger)\nem [http://localhost:8080/api/swagger-ui/](http://localhost:8080/q/swagger-ui/)\ne o frontend em [http://localhost:8081](http://localhost:8081).\n\n## Diagrama de Entidade-Relacionamento do Banco de Dados\n\n```mermaid\nclassDiagram\n    class PaperProjection {\n        String title\n        String summary\n        String author\n        String email\n        String submittedAt\n    }\n    class User {\n        String firstName\n        String lastName\n        String email\n        String password\n        String role\n        String createdAt\n        String updatedAt\n        String deletedAt\n    }\n    class Paper {\n        String title\n        String summary\n        String createdAt\n        String updatedAt\n        String deletedAt\n    }\n    User \"1\" -- \"N\" Paper: has\n```\n\n## Capturas de Tela\n\nLista de Papers\n\u003cimg src=\"readme_files/image1.png\" alt=\"\"\u003e\n\nTela de Submissão\n\u003cimg src=\"readme_files/image2.png\" alt=\"\"\u003e\n\nTela de Login\n\u003cimg src=\"readme_files/image3.png\" alt=\"\"\u003e\n\nBusca por Papers (com filtro)\n\u003cimg src=\"readme_files/image4.png\" alt=\"\"\u003e\n\nRegistro de Usuário\n\u003cimg src=\"readme_files/image5.png\" alt=\"\"\u003e\n\n## Exemplo de submissão\n\n[Vídeo de exemplo](https://youtu.be/UWyIPV5Uk1k)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanoelpiovesan%2Fcfp-back","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanoelpiovesan%2Fcfp-back","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanoelpiovesan%2Fcfp-back/lists"}