Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 31 additions & 13 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,49 @@
"name": "H4 Website",
"image": "mcr.microsoft.com/devcontainers/typescript-node:24",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
// Env
"ghcr.io/helpers4/devcontainer/local-mounts:1": {},
"ghcr.io/helpers4/devcontainer/package-auto-install:1": {},
"ghcr.io/helpers4/devcontainer/shell-history-per-project:1": {},
"ghcr.io/helpers4/devcontainer/git-absorb:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
// Dev
"ghcr.io/helpers4/devcontainer/essential-dev:1": {},
"ghcr.io/helpers4/devcontainer/auto-header:1": {
"projectName": "helpers4",
"license": "AGPL-3.0-or-later"
},
"ghcr.io/helpers4/devcontainer/typescript-dev:1": {},
"ghcr.io/joshuanianji/devcontainer-features/mount-pnpm-store:1": {},
"ghcr.io/helpers4/devcontainer/vite-plus:1": {},
"ghcr.io/joshuanianji/devcontainer-features/mount-pnpm-store:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"psioniq.psi-header"
]
}
"ghcr.io/helpers4/devcontainer/package-auto-install:1": {}
},
"forwardPorts": [
3000,
3001,
3002,
3003,
5173
],
"portsAttributes": {
"3000": {
"label": "Dev Server / Docusaurus",
"label": "Landing (Vite)",
"onAutoForward": "notify"
},
"3001": {
"label": "TypeScript Docs (Docusaurus)",
"onAutoForward": "notify"
},
"3002": {
"label": "DevContainer Docs (Docusaurus)",
"onAutoForward": "notify"
},
"3003": {
"label": "GitHub Actions Docs (Docusaurus)",
"onAutoForward": "notify"
},
"5173": {
"label": "Vite Dev Server (Landing)",
"label": "Vite Dev Server (Fallback)",
"onAutoForward": "notify"
}
}
}
}
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# VS Code
.history

# Copilot
.copilot/*

# Build and dependencies
build
doc
dist/
docs/**/.docusaurus/
node_modules
12 changes: 0 additions & 12 deletions .gitmodules

This file was deleted.

52 changes: 52 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Landing (3000)",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["dev:landing"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "TypeScript Docs (3001)",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["dev:docs:typescript"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "DevContainer Docs (3002)",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["dev:docs:devcontainer"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "GitHub Actions Docs (3003)",
"type": "node",
"request": "launch",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["dev:docs:action"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
],
"compounds": [
{
"name": "All Servers",
"configurations": [
"Landing (3000)",
"TypeScript Docs (3001)",
"DevContainer Docs (3002)",
"GitHub Actions Docs (3003)"
]
}
]
}
Loading
Loading