mirror of
https://github.com/domfelipe/chef-zero.git
synced 2026-08-07 06:16:45 +00:00
feat: launch ChefZero static app
This commit is contained in:
commit
a85cbfd559
8 changed files with 1274 additions and 0 deletions
46
README.md
Normal file
46
README.md
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# ChefZero
|
||||
|
||||
ChefZero e um app estatico para encontrar receitas com ingredientes que ja existem em casa. Ele combina um motor local de busca por ingredientes com uma integracao real e sem chave com a API publica TheMealDB para carregar a Inspiracao do Dia.
|
||||
|
||||
## Entrega
|
||||
|
||||
- App 100% estatico para GitHub Pages
|
||||
- Busca local com ranking por encaixe, tempo e custo
|
||||
- Dados mockados ricos para evitar dependencia de API paga
|
||||
- Integracao keyless com TheMealDB via `fetch`
|
||||
- Fallback elegante quando a API externa falha
|
||||
- Workflow GitHub Actions para deploy automatico
|
||||
- Documentacao das etapas de Planejamento, Execucao, Red Team, QA e Finalizacao
|
||||
|
||||
## Deploy
|
||||
|
||||
O deploy roda automaticamente a cada `push` na branch `main` usando `.github/workflows/deploy.yml`.
|
||||
|
||||
URL esperada:
|
||||
|
||||
```text
|
||||
https://domfelipe.github.io/chef-zero/
|
||||
```
|
||||
|
||||
## Arquivos
|
||||
|
||||
```text
|
||||
.
|
||||
├── index.html
|
||||
├── README.md
|
||||
├── .nojekyll
|
||||
├── .github/workflows/deploy.yml
|
||||
└── docs/
|
||||
├── FINALIZACAO.md
|
||||
├── PLANEJAMENTO.md
|
||||
├── QA.md
|
||||
└── REDTEAM.md
|
||||
```
|
||||
|
||||
## Desenvolvimento local
|
||||
|
||||
```bash
|
||||
python3 -m http.server 4173
|
||||
```
|
||||
|
||||
Abra `http://localhost:4173`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue