Skip to content

Commit c0051f1

Browse files
chore: Improve documentation and site
1 parent c625293 commit c0051f1

12 files changed

+81
-1
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ dist
33
cdk.out
44
.serverless
55
.aws-sam
6-
src/extension/aws
6+
src/extension/aws
7+
*.html

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Contact me via:
2929
- [GitHub Issues](https://github.com/ServerlessLife/lambda-live-debugger/issues)
3030
- [LinkedIn](http://www.linkedin.com/in/marko-serverlesslife)
3131

32+
Also, check out my blog: [www.serverlesslife.com](https://www.serverlesslife.com) and follow me on [X (Twitter)](https://twitter.com/ServerlessL).
33+
3234
## The Problem Statement
3335

3436
Serverless is amazing and solves many issues with traditional systems. However, writing code for Lambda functions can be challenging. The cycle of writing, deploying, running, fixing, and redeploying is time-consuming and tedious. You could use tools to run Lambda locally or use unit/integration tests; those approaches often don't replicate the actual environment closely enough.

_config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
11
theme: jekyll-theme-primer
2+
title: Lambda Live Debugger
3+
author: Marko (ServerlessLife)
4+
5+
keywords: aws, lambda, debugger, serverless, aws-lambda, javascript, typescript, dev-tools, lambda-debugger, aws-cdk, serverless-framework, sls, aws-sam, sam, terraform, local-debugging, cloud-development
6+
description: Tool for remote debugging AWS Lambda functions
7+
url: https://www.lldebugger.com
8+
image:
9+
path: https://www.lldebugger.com/logo.png
10+
width: 289
11+
height: 266
12+
alt: Lambda Live Debugger
13+
logo: https://www.lldebugger.com/logo.png
14+
twitter:
15+
username: ServerlessL
16+
og_image: https://www.lldebugger.com/logo.png
17+
social:
18+
links:
19+
- 'https://twitter.com/ServerlessL'
20+
- 'https://www.linkedin.com/in/marko-serverlesslife/'
21+
favicon: ./favicon.ico
22+
avatar: https://www.lldebugger.com/logo.png

_layouts/default.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
10+
<meta property="og:image" content="https://www.lldebugger.com/logo_landscape.jpg">
11+
<meta name="twitter:image" content="https://www.lldebugger.com/logo_landscape.jpg">
12+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
13+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
14+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
15+
<link rel="manifest" href="/site.webmanifest">
16+
17+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
18+
{% include head-custom.html %}
19+
</head>
20+
<body>
21+
<div class="container-lg px-3 my-5 markdown-body">
22+
{% if site.title and site.title != page.title %}
23+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title }}</a></h1>
24+
{% endif %}
25+
26+
{{ content }}
27+
28+
{% if site.github.private != true and site.github.license %}
29+
<div class="footer border-top border-gray-light mt-5 pt-3 text-right text-gray">
30+
This site is open source. {% github_edit_link "Improve this page" %}.
31+
</div>
32+
{% endif %}
33+
</div>
34+
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
35+
<script>anchors.add();</script>
36+
</body>
37+
</html>

android-chrome-192x192.png

44.9 KB
Loading

android-chrome-512x512.png

215 KB
Loading

apple-touch-icon.png

40.4 KB
Loading

favicon-16x16.png

909 Bytes
Loading

favicon-32x32.png

2.53 KB
Loading

favicon.ico

15 KB
Binary file not shown.

logo_landscape.jpg

38.4 KB
Loading

site.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "",
3+
"short_name": "",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

0 commit comments

Comments
 (0)