-
Notifications
You must be signed in to change notification settings - Fork 21
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 #128 from sbv-world-health-org-metrics/revert-114-…
…ajhenry/cleanup Revert "Rework directory structure"
- Loading branch information
Showing
98 changed files
with
2,685 additions
and
17,545 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 |
---|---|---|
@@ -1,27 +1,32 @@ | ||
{ | ||
"name": "Typescript", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"name": "Go", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"features": { | ||
"docker-in-docker": { | ||
"version": "latest", | ||
"moby": true | ||
}, | ||
"azure-cli": "latest", | ||
"ghcr.io/devcontainers/features/github-cli:1": {}, | ||
"ghcr.io/devcontainers/features/node:1": {} | ||
}, | ||
|
||
"remoteUser": "vscode", | ||
"customizations": { | ||
"vscode": { | ||
"settings": {} | ||
}, | ||
"extensions": [ | ||
"github.copilot", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"docker-in-docker": { | ||
"version": "latest", | ||
"moby": true | ||
}, | ||
"azure-cli": "latest", | ||
"ghcr.io/devcontainers/features/github-cli:1": {}, | ||
"ghcr.io/devcontainers/features/node:1": {} | ||
}, | ||
|
||
"remoteUser": "vscode", | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"go.toolsManagement.checkForUpdates": "local", | ||
"go.useLanguageServer": true, | ||
"go.gopath": "/go", | ||
"gopls": { "ui.semanticTokens": true } | ||
} | ||
}, | ||
"extensions": [ | ||
"github.copilot", | ||
"golang.go" | ||
] | ||
}, | ||
"postCreateCommand": "./script/install-tools.sh" | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -1,42 +1,3 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
# Data files - these get generated at buildtime. The README includes instructions for generating these. | ||
/src/data/data.json | ||
|
||
.env* | ||
!.env.example | ||
*.env | ||
tmp/* | ||
sbv-world-health-org-metrics.code-workspace |
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,6 @@ | ||
{ | ||
"recommendations": [ | ||
"golang.go", | ||
"DavidAnson.vscode-markdownlint" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,35 +1,24 @@ | ||
{ | ||
// 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.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "App: debug server-side", | ||
"type": "node-terminal", | ||
"request": "launch", | ||
"command": "cd app && npm run dev" | ||
}, | ||
{ | ||
"name": "App: debug client-side", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "http://localhost:3000" | ||
}, | ||
{ | ||
"name": "App: debug full stack", | ||
"type": "node-terminal", | ||
"name": "Launch metrics (local)", | ||
"type": "go", | ||
"request": "launch", | ||
"command": "cd app && npm run dev", | ||
"serverReadyAction": { | ||
"pattern": "- Local:.+(https?://.+)", | ||
"uriFormat": "%s", | ||
"action": "debugWithChrome" | ||
} | ||
"mode": "debug", | ||
"program": "${workspaceFolder}/backend/cmd/main.go", | ||
"envFile": "${workspaceFolder}/dev.vscode.env" | ||
}, | ||
{ | ||
"name": "Backend: Debug", | ||
"name": "Next.js: debug metrics", | ||
"type": "node-terminal", | ||
"request": "launch", | ||
"command": "cd backend && npm run dev", | ||
"envFile": "${workspaceFolder}/.env" | ||
"cwd": "${workspaceFolder}/ts-backend", | ||
"command": "npm run start", | ||
"envFile": "${workspaceFolder}/ts-backend/.env" | ||
} | ||
] | ||
} |
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,17 @@ | ||
{ | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"typescript.format.enable": true, | ||
"eslint.format.enable": true, | ||
"eslint.validate": ["javascript", "typescript", "typescriptreact", "json"], | ||
"[javascript][typescript][typescriptreact]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"editor.tabSize": 2, | ||
"editor.rulers": [ | ||
118 | ||
], | ||
"typescript.tsdk": "who-metrics-ui/node_modules/typescript/lib", | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "vscode.typescript-language-features" | ||
}, | ||
} |
Oops, something went wrong.