
VALENTINERONTEZ.
Model. Engineer. Architect.

1name: Production Pipeline2on:3 push:4 branches: [main]5.6jobs:7 deploy:8 runs-on: ubuntu-latest9 strategy:10 matrix:11 target: [api, worker, edge]12 steps:13 - uses: actions/checkout@v414 - name: Build & Push15 run: |16 docker build -t ${{ matrix.target }}17 docker push $ECR:${{ github.sha }}18 - name: Deploy Infra19 run: terraform apply -auto-approve20 env:21 TF_VAR_image:${{ github.sha }}22 TF_VAR_region: us-east-123 - name: Smoke Test24 run: curl -f $API_URL/health25.26# Pipeline v4.2 | Targets: 327# Last deploy: 2h ago
1resource "aws_ecs_service" "api" {2 name = "rontez-api"3 cluster = aws_ecs_cluster.main.id4 task_definition = aws_ecs_task.api.arn5 desired_count = 36 launch_type = "FARGATE"7.8 network_configuration {9 subnets = var.private_subnets10 security_groups = [aws_security_group.api.id]11 assign_public_ip = false12 }13.14 load_balancer {15 target_group_arn = aws_lb_target_group.api.arn16 container_name = "api"17 container_port = 800018 }19}20.21resource "aws_appautoscaling_target" "api" {22 max_capacity = 1223 min_capacity = 324 resource_id = "service/rontez/rontez-api"25 scalable_dimension = "ecs:service:DesiredCount"26 service_namespace = "ecs"27}
1from fastapi import FastAPI, Request2from prometheus_client import Histogram, Counter3import httpx, time4.5app = FastAPI(title="Observability Service")6.7latency = Histogram(8 "request_duration_seconds",9 "Request latency",10 buckets=[0.01, 0.05, 0.1, 0.5, 1.0]11)12requests_total = Counter(13 "requests_total",14 "Total requests",15 ["method", "endpoint", "status"]16)17.18@app.middleware("http")19async def metrics(req: Request, call_next):20 start = time.perf_counter()21 response = await call_next(req)22 elapsed = time.perf_counter() - start23 latency.observe(elapsed)24 requests_total.labels(25 req.method, req.url.path,26 response.status_code27 ).inc()28 return response
“You aren’t allowed to tell them what their problem is, and in return, they aren’t allowed to tell you what to build. They own the problem, you own the solution.”
— Rob Fitzpatrick, The Mom Test
Building thefuture of SaaS.
Brand Aware Gen-AI for Creators.
An AI-powered content creation platform that understands brand voice, visual identity, and audience psychology to generate on-brand creative assets at scale.

Something Toldby Deanna Fay
Narrative driven software.
A storytelling platform where data meets emotion. Clean interfaces for complex narratives, built with obsessive attention to typography and pacing.
The editorialportfolio.

Elle U.S.


Bottega Veneta

Dolce & Gabbana

Vogue

Tom Ford

Ralph Lauren

Nautica

Maison Simons

Emilio Pucci

Tom Ford

Louis Vuitton

Express
Engineeringwith intent.
I came up writing code from scratch. Visual Basic, early scripting, understanding every line because you had to. Runways taught me something code couldn’t. That people feel the details before they understand them. That instinct shapes everything I build now: intelligent systems where the engineering disappears but the quality doesn’t. Swift, JavaScript, Python, Rust. The stack grew. The discipline didn’t.
Available for what’s next.
Get in Touch