microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f5199a483a7591fb09ec219684cb2c2edb847c3c

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

33lines · modecode

1{
2 "name": "HVE Core - Markdown Editing",
3 "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
4 "features": {
5 "ghcr.io/devcontainers/features/node:1": {
6 "version": "lts"
7 },
8 "ghcr.io/devcontainers/features/python:1": {
9 "version": "3.11"
10 },
11 "ghcr.io/devcontainers/features/git:1": {},
12 "ghcr.io/devcontainers/features/github-cli:1": {},
13 "ghcr.io/devcontainers/features/azure-cli:1": {},
14 "ghcr.io/devcontainers/features/powershell:1": {}
15 },
16 "customizations": {
17 "vscode": {
18 "extensions": [
19 "streetsidesoftware.code-spell-checker",
20 "davidanson.vscode-markdownlint",
21 "yzhang.markdown-all-in-one",
22 "bierner.markdown-preview-github-styles",
23 "bierner.markdown-mermaid",
24 "bpruitt-goddard.mermaid-markdown-syntax-highlighting",
25 "github.vscode-pull-request-github"
26 ]
27 }
28 },
29 // Dependencies are pinned for stability. Dependabot and security workflows manage updates.
30 "onCreateCommand": "sudo apt update && sudo apt install -y shellcheck && curl -sSfL https://github.com/gitleaks/gitleaks/releases/download/v8.18.2/gitleaks_8.18.2_linux_x64.tar.gz | sudo tar -xz -C /usr/local/bin gitleaks",
31 "postCreateCommand": "npm install && pip install -r requirements.txt",
32 "remoteUser": "vscode"
33}
34