Skip to content

Commit 154cb89

Browse files
Merge pull request #80 from fiap-tech-challenge-java/copilot/tag-release-v1-0-0
chore: create v1.0.0 release for Hackathon FIAP 2026
2 parents 0128d8d + e85b634 commit 154cb89

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Create v1.0.0 Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '.github/workflows/create-release.yml'
9+
workflow_dispatch:
10+
11+
jobs:
12+
create-release:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
with:
20+
ref: main
21+
22+
- name: Create Release
23+
uses: softprops/action-gh-release@v2
24+
with:
25+
tag_name: v1.0.0
26+
target_commitish: main
27+
name: "VigiSUS v1.0.0 — Hackathon FIAP 2026"
28+
body: |
29+
## VigiSUS v1.0.0 — Hackathon FIAP 2026
30+
31+
MVP entregue para o Hackathon Fase 5 — Arquitetura e Desenvolvimento Java (9ADJT).
32+
33+
### O que está incluído
34+
- 18 endpoints REST documentados via Swagger (`/swagger-ui.html`)
35+
- Pipeline de dados Python com ingestão real de DATASUS (SINAN/CNES via FTP), IBGE e Open-Meteo
36+
- Previsão de risco epidemiológico baseada em cruzamento climático (score 0-8, 4 níveis)
37+
- Encaminhamento inteligente com fórmula de Haversine (sem APIs de mapas pagas)
38+
- Busca por linguagem natural via Gemini com fallback determinístico
39+
- Frontend React com dashboards, mapas Leaflet e acessibilidade (WCAG, dark mode, ARIA)
40+
- Stack dockerizada: `docker compose up --build` sobe tudo em um comando
41+
- Cobertura de testes: 91,87% de linhas (JaCoCo)
42+
43+
### Como rodar
44+
See [README.md](./README.md) and [docs/COMO_DEMONSTRAR.md](./docs/COMO_DEMONSTRAR.md)
45+
46+
### Grupo 7 — FIAP PosTech 9ADJT
47+
draft: false
48+
prerelease: false

0 commit comments

Comments
 (0)