Pending changes exported from your codespace

This commit is contained in:
Andrei Jiroh Halili 2022-11-27 04:06:46 +00:00
parent e4793e6b2f
commit 12379409cf
5 changed files with 82 additions and 3 deletions

8
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.208.0/containers/ubuntu/.devcontainer/base.Dockerfile
# [Choice] Ubuntu version (use hirsuite or bionic on local arm64/Apple Silicon): hirsute, focal, bionic
ARG VARIANT="focal"
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
RUN apt-get update \
&& apt-get install nano pass openssh-client --yes

View File

@ -0,0 +1,56 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.208.0/containers/ubuntu
{
"name": "ajhalili2006's setup",
"build": {
"dockerfile": "Dockerfile",
// Update 'VARIANT' to pick an Ubuntu version: hirsute, focal, bionic
// Use hirsute or bionic on local arm64/Apple Silicon.
"args": { "VARIANT": "focal" }
},
// Set *default* container specific settings.json values on container create.
"settings": {
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "material-product-icons",
"workbench.colorTheme": "GitHub Dark Default",
"git.alwaysSignOff": true
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"GitHub.github-vscode-theme",
"ms-azuretools.vscode-docker",
"formulahendry.docker-explorer",
"donjayamanne.githistory",
"cschleiden.vscode-github-actions",
"me-dutour-mathieu.vscode-github-actions",
"michelemelluso.gitignore",
"timonwong.shellcheck",
"WakaTime.vscode-wakatime",
"PKief.material-icon-theme",
"PKief.material-product-icons"
],
// 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": "uname -a",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
"docker-in-docker": "latest",
"kubectl-helm-minikube": "latest",
"terraform": "latest",
"git": "latest",
"git-lfs": "latest",
"github-cli": "latest",
"sshd": "latest",
"homebrew": "latest",
"node": "lts",
"python": "latest"
}
}

4
.github/FUNDING.yml vendored
View File

@ -1,8 +1,8 @@
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
github: ["ajhalili2006"] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: ajhalili2006 # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
open_collective: ajhalili2006 # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry

15
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
"recommendations": [
"GitHub.github-vscode-theme",
"ms-azuretools.vscode-docker",
"formulahendry.docker-explorer",
"donjayamanne.githistory",
"cschleiden.vscode-github-actions",
"me-dutour-mathieu.vscode-github-actions",
"michelemelluso.gitignore",
"timonwong.shellcheck",
"WakaTime.vscode-wakatime",
"PKief.material-icon-theme",
"PKief.material-product-icons"
]
}

View File

@ -1,4 +1,4 @@
{
"workbench.iconTheme": "vscode-icons",
"workbench.iconTheme": "material-icon-theme",
"git.alwaysSignOff": true
}