@deepak-kumar-ab6810202/resume
Version:
My resume printed via npx.
44 lines (37 loc) • 1.13 kB
JavaScript
import { bold, gray, green } from "chalk";
import boxen from "boxen";
const heading = `${bold.blue("Deepak Kumar")}
${gray("DevOps Engineer | AWS Certified | 3+ Years Experience")}
${bold("LinkedIn:")} linkedin.com/in/deepak-kumar-ab6810202
${bold("GitHub:")} github.com/deep1172
${bold("Email:")} 1172dipu@gmail.com
`;
const skills = `
${bold("Skills:")}
- AWS, EC2, S3, RDS, Lambda, ECS, EKS
- Docker, Kubernetes, Jenkins, GitHub Actions
- Terraform, CloudFormation, Ansible
- Prometheus, Grafana, ELK Stack
- CI/CD, DevSecOps, Monitoring
`;
const experience = `
${bold("Experience:")}
${green("DevOps Engineer at Tech2Mates Ltd")} (2023 - Present)
- Automated cloud infrastructure using Terraform.
- Built CI/CD pipelines for microservices on GitHub Actions.
- Migrated workloads from EC2 to ECS.
`;
const education = `
${bold("Education:")}
Bachelor of Technology in Computer Science
`;
export default boxen(
`${heading}\n\n${skills}\n${experience}\n${education}`,
{
padding: 1,
margin: 1,
borderStyle: "round",
borderColor: "cyan",
align: "left",
}
);