nitrogen 0.1.0

Static site generator with a focus on html/css composability without javascript
Documentation
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or the definition README at
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/rust
{
	"name": "Rust",
	"dockerFile": "Dockerfile",
	"runArgs": [
		// Uncomment the next line to use a non-root user. See https://aka.ms/vscode-remote/containers/non-root-user.
		// "-u", "1000",

		"--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"
	],


	// Uncomment the next line if you want to publish any ports.
	"appPort": 7878,

	// Uncomment the next line to run commands after the container is created.
	// "postCreateCommand": "rustc --version"

	"extensions": [
		"rust-lang.rust",
		"bungcip.better-toml",
		"vadimcn.vscode-lldb"
	],
	"settings": {
		"lldb.executable": "/usr/bin/lldb-3.9"
	}
}