-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
96 lines (91 loc) · 2.94 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const express = require('express');
const app = express();
// Set the template engine
app.set('view engine', 'ejs');
app.set('views', __dirname + '/views');
// Define the resume data
const resumeData = {
name: 'Marcio Barbato',
description: 'DevOps Engineer',
address: 'Silva Brinco street 301, Porto, Portugal',
email: '[email protected]',
title: 'Professional Summary',
summary: 'Brazilian Cloud Engineer professional who likes to automate the workload and dream to work on something that impacts people´s life.',
techSkills: ['Microsoft Azure', 'AWS Cloud','Linux and Windows Administration','CI/CD Pipeline with Azure DevOps','Ansible','ARM Templates','Terraform','Kubernetes'],
experience: [
{
position: 'DevOps Engineer',
company: 'Cofco International',
duration: 'Jan 2023 - Present',
responsibilities: 'Responsible for terraform standards, dev team assistance on azure DevOps best practices.'
},
{
position: 'Azure Support Engineer',
company: 'Microsoft',
duration: 'May 2022 - Dec 2022',
responsibilities: 'Azure Stack Hub team member worked assisting customers with administrative tasks for azure private cloud.'
},
{
position: 'Cloud Engineer',
company: 'Cofco International',
duration: 'Dec 2020 - April 2022',
responsibilities: 'Responsible for cloud deployments, cloud service management, automation using ansible and CICD with Azure DevOps.'
},
{
position: 'DevOps Engineer',
company: 'EPAM',
duration: 'Feb 2020 - Dec 2020',
responsibilities: 'Responsible for planning and development of Cloud Infrastructure, CI/CD Pipelines for third-party customers. Worked with AWS environment on a full redesign for an automated web portal.'
},
{
position: 'DevOps Engineer',
company: 'Sage Software',
duration: 'Jul 2017 - Dec 2019',
responsibilities: 'Responsible for cloud deployments and application release. Worked with TeamCity and Azure DevOps.'
}
],
education: [
{
degree: 'Bachelor',
institution: 'UTFPR, Ponta Grossa',
graduationYear: '2015'
}
],
certifications: [
{
vendor: 'Azure DevOps Engineer Expert',
issued: 'Issued: Nov 2021',
expiration: 'Expiration: Nov 2023'
},
{
vendor: 'Azure Administrator Associate',
issued: 'Issued: Apr 2021',
expiration: 'Expiration: April 2025'
},
{
vendor: 'Azure Fundamentals',
issued: 'Issued: Apr 2021',
}
],
languages: [
{
language: 'Portuguese',
proficiency: 'Native'
},
{
language: 'English',
proficiency: 'Advanced'
}
]
};
// Set up routes
app.get('/', (req, res) => {
res.send('Welcome to My Resume');
});
app.get('/resume', (req, res) => {
res.render('resume', { resume: resumeData });
});
// Start the server
app.listen(3000, () => {
console.log('Server started on port 3000');
});