| Port | Service |
|---|---|
| 4321 | Astro Client |
| 8000 | DynamoDB Local |
| 8001 | DynamoDB GUI Admin |
| 9000 | Cargo Lambda Server |
.vscode/settings.jsonConfiguration file for VS Code used to enable astro linting
{
"eslint.validate": [
"astro",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
]
}
simple-icon-colors.jsonimport { writeFileSync } from "fs";
const colors = Object.entries(await import("simple-icons")).reduce(
(p, [name, { hex }]) => ({ [name.slice(2).toLowerCase()]: hex, ...p }),
{},
);
writeFileSync("./simple-icon-colors.json", JSON.stringify(colors, null, 2));