https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 7192aac1163a7ae95dc44a8acf51bed076a157f7 authored by Dmitry Yu. Naumov on 14 September 2023, 21:45:59 UTC
Merge branch 'SmallFixes' into 'master'
Tip revision: 7192aac
.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