mirror of
https://github.com/Xinrea/bili-shadowreplay.git
synced 2025-11-24 20:15:34 +08:00
* chore: add devcontainer config (#175) * refactor: refactor error handling and update dependencies (#176) * docs: update webhook * feat: add webhook module * feat: webhook url settings * feat: update webhook poster instead of recreating * feat: add link for webhook docs * refactor: using relative path for all covers * fix: webhook in headless mode * feat: implement all webhook events * fix: webhook in headless mode * feat: static host cache/output directory * tests: add more tests (#178) * chore: add tests * chore: update * fix: wrong cover type * bump version to 2.12.0 * feat: change default clip bitrate to 6000k --------- Co-authored-by: Sieluna <seele.peng@gmail.com>
32 lines
759 B
JSON
32 lines
759 B
JSON
{
|
|
"name": "vscode",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"args": {
|
|
"CONTAINER_USER": "vscode",
|
|
"CONTAINER_GROUP": "vscode"
|
|
}
|
|
},
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"version": "latest"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
}
|
|
},
|
|
"extensions": [
|
|
"vadimcn.vscode-lldb",
|
|
"rust-lang.rust-analyzer",
|
|
"tamasfe.even-better-toml"
|
|
]
|
|
}
|
|
},
|
|
"remoteUser": "vscode"
|
|
}
|