https://gitlab.opengeosys.org/ogs/ogs.git
Revision b953bab55051b5021c27bb6b66055562b12aeec5 authored by Dmitri Naumov on 28 April 2023, 15:38:27 UTC, committed by Dmitri Naumov on 30 April 2023, 13:56:49 UTC
1 parent 4630a72
Raw File
Tip revision: b953bab55051b5021c27bb6b66055562b12aeec5 authored by Dmitri Naumov on 28 April 2023, 15:38:27 UTC
[PL] Remove unused member function
Tip revision: b953bab
.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