ryan@whoami:~/about
$ cat README.md
# About This Site
This site serves as both a personal landing page and a learning project for modern cloud infrastructure, containerization, and CI/CD automation.
$ cat stack.json
{
"frontend": "Next.js + TypeScript + Tailwind CSS",
"container": "Docker (multi-stage Alpine build)",
"hosting": "AWS ECS Fargate",
"infrastructure": "Terraform (IaC)",
"ci_cd": "GitHub Actions"
}
$ cat security.log
[INFO] Container runs as non-root user
[INFO] Multi-stage Docker build minimizes attack surface
[INFO] Trivy vulnerability scanning blocks high/critical CVEs
[INFO] Weekly scheduled rebuilds pull latest security patches
[INFO] ECR lifecycle policy limits stored image versions
[INFO] Security groups restrict traffic to necessary ports only
$ cat architecture.txt
┌─────────────┐     ┌─────────────┐     ┌─────────────┐
│   GitHub    │────▶│   GitHub    │────▶│   Amazon    │
│    Repo     │     │   Actions   │     │     ECR     │
└─────────────┘     └─────────────┘     └─────────────┘
                                               │
                                               ▼
┌─────────────┐     ┌─────────────┐     ┌─────────────┐
│   Users     │────▶│     ALB     │────▶│ ECS Fargate │
│             │     │             │     │             │
└─────────────┘     └─────────────┘     └─────────────┘
$ cd ~
$
[ system uptime: always ] [ hosted on AWS ECS Fargate ]