Revision 5c546b0449081c52f9f749fabb4f9b7369be1915 authored by Lars Bilke on 22 November 2022, 07:50:26 UTC, committed by Lars Bilke on 22 November 2022, 07:50:26 UTC
Ensure the uniqueness of output file names

Closes #3332

See merge request ogs/ogs!4383
2 parent s 640c90e + 98828ad
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