- Cria README.md na raiz com visão global e diagrama de arquitetura - Adiciona/atualiza README.md em todos os componentes: - backend (API Go) - backoffice (NestJS) - marketplace (React/Vite) - saveinmed-bff (Python/FastAPI) - saveinmed-frontend (Next.js) - website (Fresh/Deno) - Atualiza .gitignore em todos os componentes com regras abrangentes - Cria .gitignore na raiz do projeto - Renomeia pastas para melhor organização: - backend-go → backend - backend-nest → backoffice - marketplace-front → marketplace - Documenta arquitetura, tecnologias, setup e fluxo de desenvolvimento
65 lines
684 B
Text
65 lines
684 B
Text
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# Dependencies
|
|
/node_modules
|
|
node_modules/
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# Testing
|
|
/coverage
|
|
coverage/
|
|
|
|
# Next.js
|
|
/.next/
|
|
/out/
|
|
.next/
|
|
next-env.d.ts
|
|
|
|
# Production
|
|
/build
|
|
build/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env*
|
|
.env*.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
!*.example
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
pnpm-debug.log*
|
|
*.log
|
|
logs/
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
*.pem
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
.cache/
|