Skip to content

Commit 5b2f04b

Browse files
committed
build: add support for the jekyll vs code development container
1 parent 2e416be commit 5b2f04b

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.devcontainer/devcontainer.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"image": "mcr.microsoft.com/vscode/devcontainers/jekyll",
3+
"postCreateCommand": "bundle",
4+
"forwardPorts": [4000]
5+
}

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto eol=lf
2+
*.{cmd,[cC][mM][dD]} text eol=crlf
3+
*.{bat,[bB][aA][tT]} text eol=crlf

.vscode/launch.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "bundle exec jekyll serve",
6+
"name": "Run Jekyll",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)