https://gitlab.opengeosys.org/ogs/ogs.git
Revision a99405a87d6a7fa98e65c1b5004dcf75dbe8ae74 authored by wenqing on 27 June 2023, 15:48:43 UTC, committed by wenqing on 27 June 2023, 15:48:43 UTC
[HM] Avoid to  use  _use_monolithic_scheme

See merge request ogs/ogs!4655
2 parent s 071980e + 997dcf6
Raw File
Tip revision: a99405a87d6a7fa98e65c1b5004dcf75dbe8ae74 authored by wenqing on 27 June 2023, 15:48:43 UTC
Merge branch 'imprv_HM_coupling' into 'master'
Tip revision: a99405a
.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