https://gitlab.opengeosys.org/ogs/ogs.git
Revision 1f86a5ab8d39a7bfa0b0fb924151854ef5ee95af authored by Thomas Fischer on 26 January 2023, 10:58:56 UTC, committed by Thomas Fischer on 17 July 2023, 13:51:39 UTC
1 parent 0d93b69
Raw File
Tip revision: 1f86a5ab8d39a7bfa0b0fb924151854ef5ee95af authored by Thomas Fischer on 26 January 2023, 10:58:56 UTC
Adjusted time stepper pairs to make time steps exactly as in the old FixedTimeStepping algorithm
Tip revision: 1f86a5a
.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