Revision 099b9d949e87deace919611cf3d8078161c4f58f authored by Dmitry Yu. Naumov on 19 July 2023, 16:21:34 UTC, committed by Dmitry Yu. Naumov on 19 July 2023, 16:21:34 UTC
Update time stepping config to reflect actually take time steps

See merge request ogs/ogs!4684
2 parent s 4f90a75 + 796caf6
Raw File
.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