Compare commits

...

2 commits

Author SHA1 Message Date
peaceiris
18c640015b
fix 2020-06-21 12:58:55 +09:00
peaceiris
3e33579947
chore: Add vscode devcontainer 2020-06-20 11:38:56 +09:00
6 changed files with 70 additions and 4 deletions

View file

@ -0,0 +1,34 @@
{
"name": "Node",
"build": {
"dockerfile": "../Dockerfile",
"context": "..",
"args": {
"NODE_VERSION": "12.18.1"
}
},
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"editorconfig.editorconfig"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "npm ci",
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode",
// Developing inside a container on a remote Docker host
// https://code.visualstudio.com/docs/remote/containers-advanced#_developing-inside-a-container-on-a-remote-docker-host
"workspaceFolder": "/workspace",
"workspaceMount": "source=/home/iris/Documents/repos/github.com/peaceiris/actions-hugo,target=/workspace,type=volume"
}

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ coverage
.eslintcache
.env
node_modules
.vscode/settings.json

19
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"recommendations": [
"ms-vscode-remote.vscode-remote-extensionpack",
"ms-azuretools.vscode-docker",
"bungcip.better-toml",
"editorconfig.editorconfig",
"lfs.vscode-emacs-friendly",
"donjayamanne.githistory",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"oderwat.indent-rainbow",
"yzhang.markdown-all-in-one",
"shd101wyy.markdown-preview-enhanced",
"christian-kohler.path-intellisense",
"satokaz.vscode-bs-ctrlchar-remover",
"visualstudioexptteam.vscodeintellicode",
"esbenp.prettier-vscode"
]
}

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.1.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Node (Integrated Terminal)",
"program": "${workspaceFolder}/src/index.ts",
"console": "integratedTerminal"
}
]
}

View file

@ -1,3 +0,0 @@
{
"git.ignoreLimitWarning": true
}

View file

@ -23,7 +23,7 @@ RUN wget -q "https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz" && \
make all && \
make install
WORKDIR /repo
WORKDIR /workspace
ENV RUNNER_TEMP="/tmp"
CMD [ "bash" ]