e66847b36e
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
34 lines
680 B
JSON
34 lines
680 B
JSON
{
|
|
"name": "Hackernews",
|
|
"build": {
|
|
"dockerfile": "../examples.Dockerfile"
|
|
},
|
|
|
|
"workspaceFolder": "/workspaces/astro/examples/hackernews",
|
|
|
|
"portsAttributes": {
|
|
"3000": {
|
|
"label": "Application",
|
|
"onAutoForward": "openPreview"
|
|
}
|
|
},
|
|
|
|
"forwardPorts": [3000],
|
|
|
|
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build",
|
|
|
|
"waitFor": "postCreateCommand",
|
|
|
|
"postAttachCommand": {
|
|
"Server": "pnpm start --host"
|
|
},
|
|
|
|
"customizations": {
|
|
"codespaces": {
|
|
"openFiles": ["src/pages/[...stories].astro"]
|
|
},
|
|
"vscode": {
|
|
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
|
|
}
|
|
}
|
|
}
|