https://gitlab.opengeosys.org/ogs/ogs.git
Revision 0d30f0f61826385ef66837cdbad288fffdf14a38 authored by wenqing on 06 June 2023, 14:19:46 UTC, committed by wenqing on 06 June 2023, 14:19:46 UTC
Draft: [HM] Improvement of the fixed stress splitting approach in the staggered scheme

See merge request ogs/ogs!4578
2 parent s e9bf3d2 + 2e7aa93
Raw File
Tip revision: 0d30f0f61826385ef66837cdbad288fffdf14a38 authored by wenqing on 06 June 2023, 14:19:46 UTC
Merge branch 'imprv_fixed_stress' into 'master'
Tip revision: 0d30f0f
.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