diff options
author | Matthew Lemon <y@yulqen.org> | 2024-08-01 20:21:33 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-08-01 20:21:33 +0100 |
commit | 15754620af6aad7a7b8900abfc1a4bb449eec2b2 (patch) | |
tree | 2254a3bf60d097dd02fc06440d0a0cf6cb19f555 /.devcontainer/devcontainer.json | |
parent | 9b7839bb128fef31e8d3418f4308b59b6cb8e93a (diff) |
Deletes a bunch of bullshit files I don't need.
Diffstat (limited to '')
-rw-r--r-- | .devcontainer/devcontainer.json | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index b78092f..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,36 +0,0 @@ -// For format details, see https://containers.dev/implementors/json_reference/ -{ - "name": "pyblackbird_cc_dev", - "dockerComposeFile": [ - "../local.yml" - ], - "init": true, - "mounts": [ - { - "source": "./.devcontainer/bash_history", - "target": "/home/dev-user/.bash_history", - "type": "bind" - }, - { - "source": "~/.ssh", - "target": "/home/dev-user/.ssh", - "type": "bind" - } - ], - // Tells devcontainer.json supporting services / tools whether they should run - // /bin/sh -c "while sleep 1000; do :; done" when starting the container instead of the container’s default command - "overrideCommand": false, - "service": "django", - // "remoteEnv": {"PATH": "/home/dev-user/.local/bin:${containerEnv:PATH}"}, - "remoteUser": "dev-user", - "workspaceFolder": "/app", - // Set *default* container specific settings.json values on container create. - "customizations": { - }, - // Uncomment the next line if you want start specific services in your Docker Compose config. - // "runServices": [], - // Uncomment the next line if you want to keep your containers running after VS Code shuts down. - // "shutdownAction": "none", - // Uncomment the next line to run commands after the container is created. - "postCreateCommand": "cat .devcontainer/bashrc.override.sh >> ~/.bashrc" -} |