Full Stack & DevOps Engineer
One person. From backend to deployment.
No more juggling between dev, devops and infra. I cover all three, from commit to production monitoring.
since 2018
PROJECTS
Code in production, running for years.
E-commerce platforms, LMS, business APIs, mobile apps. Each one is deployed, monitored and maintained on my own infra, not someone else's.
WORKFLOW
Test first, deploy after.
Every code change triggers the tests. If the suite turns red, fix it before pushing. No fix-in-prod.
1@SpringBootTest 2class PaymentServiceTest { 3 4 @Autowired 5 private PaymentService payment; 6 7 @Test 8 void itRefundsAnOrder() { 9 Refund r = payment.processRefund(42L, 100);10 assertThat(r.amount()).isEqualTo(100);11 }12}
DEPLOYMENT
From git push to prod, with no human in the loop.
A commit triggers the full chain: tests, lint, CVE scan, image build, push to GHCR, deploy on Swarm or Kubernetes behind Traefik. If everything goes green, the site is live in minutes.
Code
GitHub · GitLab
git push origin master
CI
GitHub Actions
lint · test · phpstan · trivy
Build
Docker · GHCR
docker build · push :prod
Deploy
Swarm · Kubernetes
stack deploy · rollout
Live
Traefik · TLS
https://sididev.com 200
Total: 2m25s from git push to https.
RECENT DEPLOYMENTS
16 stacks · 99.97% uptime · ~30 deploys/month