<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: fu-_ry17</title>
    <description>The latest articles on DEV Community by fu-_ry17 (@fury17).</description>
    <link>https://dev.to/fury17</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3480781%2F704bc6d6-e51e-4e54-8b8b-f04aee20d33c.png</url>
      <title>DEV Community: fu-_ry17</title>
      <link>https://dev.to/fury17</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fury17"/>
    <language>en</language>
    <item>
      <title>Building a Video-to-MP3 Converter with FastAPI Microservices</title>
      <dc:creator>fu-_ry17</dc:creator>
      <pubDate>Fri, 05 Sep 2025 03:39:44 +0000</pubDate>
      <link>https://dev.to/fury17/building-a-video-to-mp3-converter-with-fastapi-microservices-57bm</link>
      <guid>https://dev.to/fury17/building-a-video-to-mp3-converter-with-fastapi-microservices-57bm</guid>
      <description>&lt;h1&gt;
  
  
  🎵 Video to MP3 Converter
&lt;/h1&gt;

&lt;p&gt;A modern, scalable microservices-based video to MP3 conversion platform built with FastAPI, featuring user authentication, file processing, and email notifications.&lt;/p&gt;

&lt;h2&gt;
  
  
  🏗️ Architecture
&lt;/h2&gt;

&lt;p&gt;This project follows a microservices architecture pattern with the following services:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
│   Gateway       │    │   Auth Service  │    │  Media Service  │
│   (Port 8000)   │◄──►│   (Port 5000)   │    │   (Port 7000)   │
└─────────────────┘    └─────────────────┘    └─────────────────┘
         │                       │                       │
         │                       │                       │
         ▼                       ▼                       ▼
┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
│ Convertor       │    │ Notification    │    │   RabbitMQ      │
│ Service         │    │ Service         │    │   Message       │
│ (Port 4000)     │    │ (Port 6000)     │    │   Broker        │
└─────────────────┘    └─────────────────┘    └─────────────────┘
         │                       │                       │
         │                       │                       │
         ▼                       ▼                       ▼
┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
│   MongoDB       │    │   PostgreSQL    │    │   Mongo Express │
│   (Port 27017)  │    │   (Port 5433)   │    │   (Port 8081)   │
└─────────────────┘    └─────────────────┘    └─────────────────┘
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🚀 Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;User Authentication&lt;/strong&gt;: JWT-based authentication with registration and login&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Video Upload&lt;/strong&gt;: Secure file upload with GridFS storage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Video Processing&lt;/strong&gt;: Asynchronous video to MP3 conversion using FFmpeg&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Email Notifications&lt;/strong&gt;: Automated welcome and conversion completion emails&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API Gateway&lt;/strong&gt;: Centralized routing and request handling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Microservices&lt;/strong&gt;: Scalable, independent service architecture&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Message Queuing&lt;/strong&gt;: RabbitMQ for asynchronous communication&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database Support&lt;/strong&gt;: PostgreSQL for user data, MongoDB for file storage&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🛠️ Tech Stack
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Backend Services
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;FastAPI&lt;/strong&gt; - Modern, fast web framework for building APIs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Python 3.13&lt;/strong&gt; - Programming language&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SQLModel&lt;/strong&gt; - Database ORM with type safety&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pydantic&lt;/strong&gt; - Data validation and settings management&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Databases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PostgreSQL 17&lt;/strong&gt; - Relational database for user management&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MongoDB 6.0&lt;/strong&gt; - Document database with GridFS for file storage&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Message Queue
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;RabbitMQ 3.12&lt;/strong&gt; - Message broker for asynchronous communication&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Media Processing
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;FFmpeg&lt;/strong&gt; - Video/audio processing and conversion&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Email Service
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;FastAPI-Mail&lt;/strong&gt; - Email sending capabilities&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Infrastructure
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Docker &amp;amp; Docker Compose&lt;/strong&gt; - Containerization and orchestration&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Uvicorn&lt;/strong&gt; - ASGI server for FastAPI applications&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📁 Project Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;video-mp3-convertor/
├── docker-compose.dev.yml          # Development environment setup
└── services/
    ├── auth/                       # Authentication service
    │   ├── src/
    │   │   ├── auth/              # Auth module
    │   │   │   ├── routes.py      # API endpoints
    │   │   │   ├── service.py     # Business logic
    │   │   │   ├── schema.py      # Data models
    │   │   │   └── utils.py       # Utilities (JWT, hashing)
    │   │   └── db/                # Database configuration
    │   └── requirements.txt
    ├── convertor/                  # Video conversion service
    │   ├── main.py                # Service entry point
    │   ├── mp3_consumer.py        # RabbitMQ consumer
    │   └── requirements.txt
    ├── gateway/                    # API Gateway
    │   ├── main.py                # Proxy service
    │   └── requirements.txt
    ├── media/                      # Media handling service
    │   ├── src/
    │   │   ├── media/             # Media module
    │   │   │   ├── routes.py      # Upload/download endpoints
    │   │   │   └── service.py     # File operations
    │   │   └── auth.py            # Authentication middleware
    │   └── requirements.txt
    └── notification/               # Email notification service
        ├── src/
        │   ├── consumer/          # Message consumers
        │   │   ├── mp3_consumer.py    # Conversion notifications
        │   │   └── user_consumer.py   # Welcome emails
        │   └── mail.py            # Email configuration
        └── requirements.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🚀 Quick Start
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Prerequisites
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Docker and Docker Compose&lt;/li&gt;
&lt;li&gt;Git&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Installation
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Clone the repository&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   git clone https://github.com/fu-ry17/video-mp3-convertor
   &lt;span class="nb"&gt;cd &lt;/span&gt;video-mp3-convertor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Start the services&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   docker-compose &lt;span class="nt"&gt;-f&lt;/span&gt; docker-compose.dev.yml up &lt;span class="nt"&gt;--build&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Access the services&lt;/strong&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;API Gateway&lt;/strong&gt;: &lt;a href="http://localhost:8000" rel="noopener noreferrer"&gt;http://localhost:8000&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auth Service&lt;/strong&gt;: &lt;a href="http://localhost:5000" rel="noopener noreferrer"&gt;http://localhost:5000&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Media Service&lt;/strong&gt;: &lt;a href="http://localhost:7000" rel="noopener noreferrer"&gt;http://localhost:7000&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RabbitMQ Management&lt;/strong&gt;: &lt;a href="http://localhost:15672" rel="noopener noreferrer"&gt;http://localhost:15672&lt;/a&gt; (admin/pass)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mongo Express&lt;/strong&gt;: &lt;a href="http://localhost:8081" rel="noopener noreferrer"&gt;http://localhost:8081&lt;/a&gt; (admin/pass)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  📚 API Documentation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Authentication Endpoints
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Register User
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;POST /auth/sign-up
Content-Type: application/json

{
  "email": "user@example.com",
  "password": "securepassword"
}
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Login User
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;POST /auth/sign-in
Content-Type: application/json

{
  "email": "user@example.com",
  "password": "securepassword"
}
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Verify Token
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;GET /auth/verify
Authorization: Bearer &amp;lt;access_token&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Media Endpoints
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Upload Video
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;POST /media/upload
Authorization: Bearer &amp;lt;access_token&amp;gt;
Content-Type: multipart/form-data

file: &amp;lt;video_file&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Download MP3
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;GET /media/download/{file_id}
Authorization: Bearer &amp;lt;access_token&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🔄 Workflow
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;User Registration/Login&lt;/strong&gt;: Users authenticate through the auth service&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Video Upload&lt;/strong&gt;: Users upload videos through the media service&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File Storage&lt;/strong&gt;: Videos are stored in MongoDB using GridFS&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Message Queue&lt;/strong&gt;: Upload event triggers RabbitMQ message&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Video Processing&lt;/strong&gt;: Convertor service processes videos to MP3 using FFmpeg&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Notification&lt;/strong&gt;: Email notification sent when conversion is complete&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Download&lt;/strong&gt;: Users can download converted MP3 files&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  🐳 Docker Services
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Service&lt;/th&gt;
&lt;th&gt;Port&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Gateway&lt;/td&gt;
&lt;td&gt;8000&lt;/td&gt;
&lt;td&gt;API Gateway and routing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Auth&lt;/td&gt;
&lt;td&gt;5000&lt;/td&gt;
&lt;td&gt;User authentication&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Media&lt;/td&gt;
&lt;td&gt;7000&lt;/td&gt;
&lt;td&gt;File upload/download&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Convertor&lt;/td&gt;
&lt;td&gt;4000&lt;/td&gt;
&lt;td&gt;Video processing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Notification&lt;/td&gt;
&lt;td&gt;6000&lt;/td&gt;
&lt;td&gt;Email notifications&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PostgreSQL&lt;/td&gt;
&lt;td&gt;5433&lt;/td&gt;
&lt;td&gt;User database&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MongoDB&lt;/td&gt;
&lt;td&gt;27017&lt;/td&gt;
&lt;td&gt;File storage&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RabbitMQ&lt;/td&gt;
&lt;td&gt;5672&lt;/td&gt;
&lt;td&gt;Message broker&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RabbitMQ Management&lt;/td&gt;
&lt;td&gt;15672&lt;/td&gt;
&lt;td&gt;Message queue UI&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mongo Express&lt;/td&gt;
&lt;td&gt;8081&lt;/td&gt;
&lt;td&gt;MongoDB UI&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  🔧 Environment Variables
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Auth Service
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;JWT_SECRET&lt;/code&gt;: Secret key for JWT token generation&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;DATABASE_URL&lt;/code&gt;: PostgreSQL connection string&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;RABBITMQ_URL&lt;/code&gt;: RabbitMQ connection string&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Media Service
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;RABBITMQ_URL&lt;/code&gt;: RabbitMQ connection string&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;MONGODB_URL&lt;/code&gt;: MongoDB connection string&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;AUTH_URL&lt;/code&gt;: Auth service URL for token validation&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Convertor Service
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;RABBITMQ_URL&lt;/code&gt;: RabbitMQ connection string&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;MONGODB_URL&lt;/code&gt;: MongoDB connection string&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Gateway Service
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;AUTH_URL&lt;/code&gt;: Auth service URL&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;MEDIA_URL&lt;/code&gt;: Media service URL&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🧪 Development
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Running Individual Services
&lt;/h3&gt;

&lt;p&gt;Each service can be run independently:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Auth Service&lt;/span&gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;services/auth
python &lt;span class="nt"&gt;-m&lt;/span&gt; uvicorn src.main:app &lt;span class="nt"&gt;--host&lt;/span&gt; 0.0.0.0 &lt;span class="nt"&gt;--port&lt;/span&gt; 5000

&lt;span class="c"&gt;# Media Service&lt;/span&gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;services/media
python &lt;span class="nt"&gt;-m&lt;/span&gt; uvicorn src.main:app &lt;span class="nt"&gt;--host&lt;/span&gt; 0.0.0.0 &lt;span class="nt"&gt;--port&lt;/span&gt; 7000

&lt;span class="c"&gt;# Gateway Service&lt;/span&gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;services/gateway
python &lt;span class="nt"&gt;-m&lt;/span&gt; uvicorn main:app &lt;span class="nt"&gt;--host&lt;/span&gt; 0.0.0.0 &lt;span class="nt"&gt;--port&lt;/span&gt; 8000
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Database Migrations
&lt;/h3&gt;

&lt;p&gt;The auth service uses SQLModel with automatic table creation. For production, consider using Alembic for migrations.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔒 Security Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;JWT-based authentication with access and refresh tokens&lt;/li&gt;
&lt;li&gt;Password hashing using bcrypt&lt;/li&gt;
&lt;li&gt;Token-based authorization for protected endpoints&lt;/li&gt;
&lt;li&gt;Secure file upload with validation&lt;/li&gt;
&lt;li&gt;Environment-based configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📈 Scalability
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Microservices architecture allows independent scaling&lt;/li&gt;
&lt;li&gt;Message queue enables asynchronous processing&lt;/li&gt;
&lt;li&gt;Stateless services for horizontal scaling&lt;/li&gt;
&lt;li&gt;Database separation for different data types&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🤝 Contributing
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Fork the repository&lt;/li&gt;
&lt;li&gt;Create a feature branch (&lt;code&gt;git checkout -b feature/amazing-feature&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Commit your changes (&lt;code&gt;git commit -m 'Add some amazing feature'&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Push to the branch (&lt;code&gt;git push origin feature/amazing-feature&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Open a Pull Request&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  📄 License
&lt;/h2&gt;

&lt;p&gt;This project is licensed under the MIT License - see the LICENSE file for details.&lt;/p&gt;

&lt;h2&gt;
  
  
  🎯 Future Enhancements
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;[ ] WebSocket support for real-time conversion progress&lt;/li&gt;
&lt;li&gt;[ ] Multiple output formats (WAV, AAC, etc.)&lt;/li&gt;
&lt;li&gt;[ ] Batch processing capabilities&lt;/li&gt;
&lt;li&gt;[ ] User dashboard with conversion history&lt;/li&gt;
&lt;li&gt;[ ] File size and format validation&lt;/li&gt;
&lt;li&gt;[ ] Rate limiting and usage quotas&lt;/li&gt;
&lt;li&gt;[ ] Cloud storage integration (AWS S3, Google Cloud)&lt;/li&gt;
&lt;li&gt;[ ] Kubernetes deployment configuration&lt;/li&gt;
&lt;li&gt;[ ] Monitoring and logging with Prometheus/Grafana&lt;/li&gt;
&lt;li&gt;[ ] CI/CD pipeline setup&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Built with ❤️ using FastAPI and modern Python practices&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>fastapi</category>
      <category>microservices</category>
      <category>docker</category>
      <category>eventdriven</category>
    </item>
  </channel>
</rss>
