summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
blob: 7ec99b26204387a5756874231aeaca11a6bc74e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
	"image": "ghcr.io/cachix/devenv:latest",
	"waitFor": "onCreateCommand",

	"updateContentCommand": "pnpm install",
	"postCreateCommand": "",
	"postAttachCommand": {
		"serve": "pnpm dev"
	},

	"customizations": {
		"vscode": {
			"extensions": [
				"astro-build.astro-vscode",
				"mkhl.direnv",
				"editorconfig.editorconfig",
				"dbaeumer.vscode-eslint",
				"github.vscode-github-actions",
				"me-dutour-mathieu.vscode-github-actions",
				"ecmel.vscode-html-css",
				"ms-vscode.vscode-typescript-next",
				"bierner.lit-html",
				"esbenp.prettier-vscode",
				"rvest.vs-code-prettier-eslint",
				"syler.sass-indented",
				"bradlc.vscode-tailwindcss"
			]
		}
	},

	"portsAttributes": {
		"3000": {
			"label": "website",
			"onAutoForward": "openPreview"
		}
	},

	"forwardPorts": [3000]
}