https://gitlab.opengeosys.org/ogs/ogs.git
Revision 33c7614ef6ac4fae036ab6f323b86f5caa0928bc authored by Thomas Fischer on 15 June 2023, 06:34:42 UTC, committed by Thomas Fischer on 19 June 2023, 06:44:26 UTC
will be used in the python test to odify bc values
1 parent abba876
Raw File
Tip revision: 33c7614ef6ac4fae036ab6f323b86f5caa0928bc authored by Thomas Fischer on 15 June 2023, 06:34:42 UTC
[T] Add data array to the top boundary
Tip revision: 33c7614
.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