Skip to content

Commit 4d925f7

Browse files
committed
docs: replace sam logo with vendia logo in examples
1 parent d85823b commit 4d925f7

File tree

18 files changed

+19
-19
lines changed

18 files changed

+19
-19
lines changed

examples/alb/src/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ router.get('/', (req, res) => {
2222
})
2323
})
2424

25-
router.get('/sam', (req, res) => {
26-
res.sendFile(path.join(__dirname, 'sam-logo.png'))
25+
router.get('/vendia', (req, res) => {
26+
res.sendFile(path.join(__dirname, 'vendia-logo.png'))
2727
})
2828

2929
router.get('/users', (req, res) => {

examples/alb/src/vendia-logo.png

8.17 KB
Loading

examples/alb/src/views/index.pug

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ html
2626
white-space: nowrap;
2727
overflow-x: auto;
2828
}
29-
.sam-logo {
29+
.vendia-logo {
3030
display: block;
3131
width: 10rem;
3232
margin: auto;
@@ -42,7 +42,7 @@ html
4242
}
4343
body
4444
h1 My Serverless Application
45-
img.sam-logo(src='sam')
45+
img.vendia-logo(src='vendia')
4646
p
4747
| Welcome to your AWS serverless application. This example application has several resources configured for you to explore. State is stored in memory in a given container, and is therefore ephemeral - see
4848
a(href='https://aws.amazon.com/blogs/compute/container-reuse-in-lambda/', target='_blank') Understanding Container Reuse in AWS Lambda

examples/basic-starter-api-gateway-v1/src/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ router.get('/', (req, res) => {
3838
})
3939
})
4040

41-
router.get('/sam', (req, res) => {
42-
res.sendFile(path.join(__dirname, 'sam-logo.png'))
41+
router.get('/vendia', (req, res) => {
42+
res.sendFile(path.join(__dirname, 'vendia-logo.png'))
4343
})
4444

4545
router.get('/users', (req, res) => {
-15.6 KB
Binary file not shown.
8.17 KB
Loading

examples/basic-starter-api-gateway-v1/src/views/index.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
overflow-x: auto;
3434
}
3535
36-
.sam-logo {
36+
.vendia-logo {
3737
display: block;
3838
width: 10rem;
3939
margin: auto;
@@ -54,7 +54,7 @@
5454
</head>
5555

5656
<body>
57-
<h1>My Serverless Application</h1><img class="sam-logo" src="/<%= stage %>/sam">
57+
<h1>My Serverless Application</h1><img class="vendia-logo" src="/<%= stage %>/vendia">
5858
<p>Welcome to your AWS serverless application. This example application has several resources configured for you to explore. State is stored in memory in a given container, and is therefore ephemeral - see <a href="https://aws.amazon.com/blogs/compute/container-reuse-in-lambda/" target="_blank">Understanding Container Reuse in AWS Lambda</a>&nbsp;for more information.</p>
5959
<section class="resources">
6060
<h2>Resources</h2>

examples/basic-starter-api-gateway-v1/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
new CopyPlugin({
1717
patterns: [
1818
{ from: './src/views', to: 'views' },
19-
{ from: './src/sam-logo.png' }
19+
{ from: './src/vendia-logo.png' }
2020
]
2121
})
2222
]

examples/basic-starter-api-gateway-v2/src/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ router.get('/', (req, res) => {
3434
})
3535
})
3636

37-
router.get('/sam', (req, res) => {
38-
res.sendFile(path.join(__dirname, 'sam-logo.png'))
37+
router.get('/vendia', (req, res) => {
38+
res.sendFile(path.join(__dirname, 'vendia-logo.png'))
3939
})
4040

4141
router.get('/users', (req, res) => {
-15.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)