-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from kaakaa/devcontainer
dev: add devcontainer files for codespaces
- Loading branch information
Showing
7 changed files
with
4,171 additions
and
6,854 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "Slidev Dev", | ||
"image": "mcr.microsoft.com/vscode/devcontainers/universal:2-linux", | ||
"customizations": { | ||
"vscode": { | ||
"settings": {}, | ||
"extensions": [ | ||
// Doesn't install slide vs code extention, because slidev extension doesn't support remote server setting yet. | ||
// ref: https://github.com/slidevjs/slidev-vscode/issues/13 | ||
// "antfu.slidev" | ||
] | ||
} | ||
}, | ||
"remoteUser": "codespace", | ||
"postCreateCommand": "npm i" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM mcr.microsoft.com/vscode/devcontainers/universal:2-linux | ||
|
||
USER root | ||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get -y install --no-install-recommends fonts-noto-cjk fonts-noto-color-emoji | ||
|
||
USER codespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "Slidev Dev (ja)", | ||
"build": {"dockerfile": "Dockerfile"}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": {}, | ||
"extensions": [ | ||
// Doesn't install slide vs code extention, because slidev extension doesn't support remote server setting yet. | ||
// ref: https://github.com/slidevjs/slidev-vscode/issues/13 | ||
// "antfu.slidev" | ||
] | ||
} | ||
}, | ||
"remoteUser": "codespace", | ||
"postCreateCommand": "npm i" | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.