Skip to content

Commit 5f063f8

Browse files
committed
update web site
1 parent 7edb1ac commit 5f063f8

File tree

17 files changed

+364
-261
lines changed

17 files changed

+364
-261
lines changed

.devcontainer/devcontainer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/jekyll
3+
{
4+
"name": "Jekyll",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/jekyll:2-bullseye",
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
"features": {
10+
"ghcr.io/devcontainers/features/git:1": {}
11+
},
12+
13+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
14+
// "forwardPorts": [],
15+
16+
// Uncomment the next line to run commands after the container is created.
17+
// "postCreateCommand": "jekyll --version"
18+
19+
// Configure tool-specific properties.
20+
// "customizations": {},
21+
22+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
23+
"remoteUser": "root",
24+
25+
"postStartCommand": "bundle exec jekyll serve"
26+
}

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Set the default behavior for all files.
2+
* text=auto
3+
4+
# Normalized and converts to
5+
# native line endings on checkout.
6+
*.c text
7+
*.h text
8+
9+
# Convert to CRLF line endings on checkout.
10+
*.sln text eol=crlf
11+
12+
# Convert to LF line endings on checkout.
13+
*.sh text eol=lf
14+
15+
# Binary files.
16+
*.png binary
17+
*.jpg binary
18+
*.ico binary

0 commit comments

Comments
 (0)