stamp-cli 0.3.2

A cli tool for applying project templates
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
{
	"name": "rust",
	"image": "rust",
	"customizations": {
		"vscode": {
			"settings": {
				"extensions.verifySignature": false
			},
			"extensions": [
				// general tools
				"usernamehw.errorlens", // Inline diagnostic errors
				// "streetsidesoftware.code-spell-checker", // Spell check
				"redhat.vscode-yaml", // yaml lsp
                "qufiwefefwoyn.inline-sql-syntax", // sql syntax highlighting in strings with `--sql`
				
				// rust
				"fill-labs.dependi", // dependency validation in Cargo.toml
				"tamasfe.even-better-toml", // toml lsp
				"rust-lang.rust-analyzer", // rust lsp
				"vadimcn.vscode-lldb", // rust debugger
				
				
				
				
				
				
				
				
			]
		}
	},
	"mounts": [
	],
	"runArgs": [
		"--privileged",
		"--net=host",
		"--pids-limit=16384", // Some processes like rustc can spawn more than the default process/thread limit of 2048
		// ssh
		"-v", "/home/henry/.ssh/:/root/.ssh",
		
		
	],
	
	"remoteUser": "root",
}