https://gitlab.opengeosys.org/ogs/ogs.git
Revision d699b6565c32803ec931b2303cb3b063fd9f6b1f authored by Lars Bilke on 09 December 2022, 13:25:35 UTC, committed by Lars Bilke on 13 December 2022, 08:41:05 UTC
1 parent a73426e
Raw File
Tip revision: d699b6565c32803ec931b2303cb3b063fd9f6b1f authored by Lars Bilke on 09 December 2022, 13:25:35 UTC
[web] Added NBs citations for TH2M.
Tip revision: d699b65
.devcontainer.json
{
	"name": "ogs-gcc-dev",
	"image": "registry.opengeosys.org/ogs/ogs/vscode:latest",
	"postStartCommand": "nohup bash -c 'cd web; yarn; yarn build; hugo server &'",
	"forwardPorts": [
		1313
	],
	"mounts": [
		"source=devcontainer-cpm-cache,target=/opt/cpm,type=volume",
		"source=devcontainer-ccache-cache,target=/opt/ccache,type=volume",
		"source=${localWorkspaceFolder}/../build,target=${containerWorkspaceFolder}/../build,type=bind"
	],
	"customizations": {
		"vscode": {
			"extensions": [
				"ms-vscode.cmake-tools",
				"ms-vscode.cpptools"
			]
		}
	},
	"remoteUser": "vscode",
	"features": {
		"common": {}
	}
}
back to top