https://gitlab.opengeosys.org/ogs/ogs.git
Revision 814de7e33539b02d6554e46a99a777a63cbb727b authored by Dmitry Yu. Naumov on 30 January 2023, 20:02:55 UTC, committed by Dmitry Yu. Naumov on 30 January 2023, 20:02:55 UTC
[T/M] Two solid materials extrapolation

Closes #3054 and #3063

See merge request ogs/ogs!4447
2 parent s 279cafb + 0bcabf5
Raw File
Tip revision: 814de7e33539b02d6554e46a99a777a63cbb727b authored by Dmitry Yu. Naumov on 30 January 2023, 20:02:55 UTC
Merge branch 'MultipleSolidMaterials' into 'master'
Tip revision: 814de7e
.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