https://gitlab.opengeosys.org/ogs/ogs.git
Revision fa85c43dcad6fbd0f7a7e72d2823e4b11c4b2d72 authored by Lars Bilke on 27 October 2023, 09:53:04 UTC, committed by Dmitry Yu. Naumov on 01 November 2023, 16:19:26 UTC
Only required for tests which are not build by guix.
1 parent 980e84e
Raw File
Tip revision: fa85c43dcad6fbd0f7a7e72d2823e4b11c4b2d72 authored by Lars Bilke on 27 October 2023, 09:53:04 UTC
[guix] Removed googletest dependency.
Tip revision: fa85c43
.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