Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.23 KB

README.md

File metadata and controls

37 lines (32 loc) · 1.23 KB
class AboutMe {
  name: string;
  office: string;
  company: string;
  local: string;

  constructor(name: string, office: string, company: string, local: string) {
    this.name = 'João Souza';
    this.office = 'SRE Analyst';
    this.company = 'Grupo Boticário';
    this.local = 'Valparaíso de Goiás, Goiás, Brazil';
  }
}

class Tool extends SRE {
  operation_system: string[] = ['Linux'];
  containers: string[] = ['Docker', 'Kubernetes', 'Helm Chart'];
  cloud: string[] = ['Amazon Web Services'];
  ci_cd: string[] = ['Github Actions', 'ArgoCD'];
  automation: string[] = ['Terraform'];
  observability: string[] = ['New Relic', 'Prometheus', 'Grafana'];
}

class Development {
  languages: string[] = [ 'Javascript', 'Typescript'];
  frameworks: string[] = ['Node.js', 'Nest.js'];
  databases: string[] = ['PostgreSQL', 'MongoDB'];
}