https://www.figma.com/design/goNVXuJiGqRr05bS3sCtsy/Navegador-Celel?node-id=0-1&p=f&t=mr3yzpUxcdDEWD1Q-0
/flutter-app
├── lib
│ ├── main.dart
│ ├── screens
│ ├── widgets
│ ├── models
│ ├── providers
│ ├── services
│ ├── utils
├── assets
│ ├── images
│ ├── fonts
├── pubspec.yaml
Linguagem Utilizada, Node.js
/backend
├── src
│ ├── controllers
│ ├── models
│ ├── routes
│ ├── services
│ ├── utils
│ ├── middlewares
│ ├── config
│ │ ├── db.js
│ │ ├── server.js
├── tests
├── public
│ ├── uploads
├── .env
├── package.json
├── server.js
Linguagem Utilizada, Python (Django)
/backend
├── your_project
│ ├── settings.py
│ ├── urls.py
│ ├── wsgi.py
│ ├── asgi.py
│ ├── __init__.py
├── apps
│ ├── users
│ │ ├── models.py
│ │ ├── views.py
│ │ ├── urls.py
│ │ ├── serializers.py
│ │ ├── tests.py
│ │ ├── __init__.py
│ ├── posts
│ │ ├── models.py
│ │ ├── views.py
│ │ ├── urls.py
│ │ ├── serializers.py
│ │ ├── tests.py
│ │ ├── __init__.py
├── media
│ ├── images
│ ├── videos
├── static
│ ├── css
│ ├── js
│ ├── images
├── manage.py
├── requirements.txt
/infra
├── k8s
│ ├── deployment.yaml
│ ├── service.yaml
│ ├── configmap.yaml
│ ├── secret.yaml
├── docker-compose.yml
├── Dockerfile
/docs
├── architecture.md
├── api.md
├── setup.md
├── README.md
graph TD
1(Frontend Ui) --> a(Android) --> Backend --> Services --> Autenticação-Node.js/Python --> Armazenamento
1(Frontend Ui) --> b(IOs) --> Backend
1(Frontend Ui) --> c(React Native) --> Backend
Services --> Conteúdo-Node.js --> Armazenamento
Services --> Notificações-Node.js --> Armazenamento
Services --> Recomendações-Python --> Armazenamento
Armazenamento --> S3/GCS
S3/GCS -- Banco-de-Dados --> PostgreSQL/MongoDB
S3/GCS -- CDN --> Cloudflare
S3/GCS -- Cache --> Redis