-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7da05fe
commit 178f74c
Showing
28 changed files
with
709 additions
and
871 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,40 +1,34 @@ | ||
{ | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/basics", | ||
"workspaceFolder": "/workspaces/astro/examples/basics", | ||
|
||
"portsAttributes": { | ||
"3000": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [3000], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
"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/index.astro"] | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": [ | ||
"src/pages/index.astro" | ||
] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"astro-build.astro-vscode", | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
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,40 +1,34 @@ | ||
{ | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/blog", | ||
"workspaceFolder": "/workspaces/astro/examples/blog", | ||
|
||
"portsAttributes": { | ||
"3000": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [3000], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
"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/index.astro"] | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": [ | ||
"src/pages/index.astro" | ||
] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"astro-build.astro-vscode", | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
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,21 @@ | ||
{ | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/component", | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/component", | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": [ | ||
"src/MyComponent.astro" | ||
] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"astro-build.astro-vscode", | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"waitFor": "postCreateCommand", | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/MyComponent.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
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,40 +1,34 @@ | ||
{ | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.deno.Dockerfile" | ||
}, | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.deno.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/deno", | ||
"workspaceFolder": "/workspaces/astro/examples/deno", | ||
|
||
"portsAttributes": { | ||
"3000": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [3000], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
"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/index.astro"] | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": [ | ||
"src/pages/index.astro" | ||
] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"astro-build.astro-vscode", | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
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,40 +1,34 @@ | ||
{ | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Astro Examples", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/docs", | ||
"workspaceFolder": "/workspaces/astro/examples/docs", | ||
|
||
"portsAttributes": { | ||
"3000": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [3000], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
"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/index.astro"] | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": [ | ||
"src/pages/index.astro" | ||
] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"astro-build.astro-vscode", | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
Oops, something went wrong.