gitextract_71ikwe_m/ ├── .dockerignore ├── .gitignore ├── .kiro/ │ ├── agents/ │ │ └── bia.json │ ├── mcp-db.json │ ├── mcp-ecs.json │ └── rules/ │ ├── dockerfile.md │ ├── infraestrutura.md │ └── pipeline.md ├── .sequelizerc ├── .vscode/ │ └── launch.json ├── AmazonQ.md ├── Dockerfile ├── Dockerfile_checkdisponibilidade ├── README.md ├── api/ │ ├── controllers/ │ │ ├── tarefas.js │ │ └── versao.js │ ├── data/ │ │ └── tarefas.json │ ├── models/ │ │ ├── index.js │ │ └── tarefas.js │ └── routes/ │ ├── ping.js │ ├── tarefas.js │ └── versao.js ├── buildspec.yml ├── client/ │ ├── db.json │ ├── index.html │ ├── package.json │ ├── public/ │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.jsx │ │ ├── components/ │ │ │ ├── About.js │ │ │ ├── About.jsx │ │ │ ├── AddTask.jsx │ │ │ ├── Button.jsx │ │ │ ├── DadosHenrylle.jsx │ │ │ ├── DebugLogs.jsx │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ ├── Modal.jsx │ │ │ ├── Task.jsx │ │ │ ├── Tasks.jsx │ │ │ └── VersionInfo.jsx │ │ ├── contexts/ │ │ │ ├── LogContext.jsx │ │ │ └── ThemeContext.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ └── reportWebVitals.js │ └── vite.config.js ├── compose.yml ├── config/ │ ├── database.js │ ├── default.json │ └── express.js ├── database/ │ └── migrations/ │ └── 20210924000838-criar-tarefas.js ├── docs/ │ ├── README.md │ └── architecture/ │ └── aws-ecs-diagram.html ├── generate-sts-token.bat ├── generate-sts-token.sh ├── index.html ├── index.js ├── lib/ │ └── boot.js ├── package.json ├── rodar_app_local_unix.sh ├── rodar_app_local_windows.bat ├── scripts/ │ ├── criar_role_ssm.sh │ ├── ec2_principal.json │ ├── ecs/ │ │ ├── unix/ │ │ │ ├── build.sh │ │ │ ├── check-disponibilidade.sh │ │ │ ├── deploy.sh │ │ │ └── testar-latencia.sh │ │ └── windows/ │ │ ├── build.bat │ │ ├── check-disponibilidade.bat │ │ └── deploy.bat │ ├── generate-sts-token.sh │ ├── lancar_ec2_zona_a.sh │ ├── ligar_bia_local.sh │ ├── parar_bia_local.sh │ ├── setup_bia_dev_ubuntu_ui.sh │ ├── setup_cloudshell_ssm.sh │ ├── setup_ui_ubuntu.sh │ ├── setup_vscode+chrome.sh │ ├── start-session-bash.sh │ ├── user_data_ec2_zona_a.sh │ └── validar_recursos_zona_a.sh ├── scripts_evento/ │ └── README.md ├── server.js └── tests/ └── unit/ └── controllers/ ├── tarefas.test.js └── versao.test.js