FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SocketIO-Rust/.devcontainer/devcontainer.json at main · HarrierOnChain/SocketIO-Rust · GitHub
HarrierOnChain
/
SocketIO-Rust
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
SocketIO-Rust
/
.devcontainer
/
devcontainer.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (52 loc) · 2.07 KB
Breadcrumbs
SocketIO-Rust
/
.devcontainer
/
devcontainer.json
Copy path
File metadata and controls
52 lines (52 loc) · 2.07 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
//
https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/rust
{
"name"
:
"
Rust
"
,
"dockerComposeFile"
: [
"
./docker-compose.yaml
"
],
"service"
:
"
rust-client
"
,
"workspaceFolder"
:
"
/workspace/rust-socketio
"
,
"shutdownAction"
:
"
stopCompose
"
,
"customizations"
: {
"vscode"
: {
//
Set *default* container specific settings.json values on container create.
"settings"
: {
"lldb.executable"
:
"
/usr/bin/lldb
"
,
//
VS Code don't watch files under ./target
"files.watcherExclude"
: {
"**/target/**"
:
true
},
"rust-analyzer.cargo.features"
: [
"
async
"
]
/*
,
// If you prefer rust-analzyer to be less noisy consider these settings to your settings.json
"editor.semanticTokenColorCustomizations": {
"rules": {
"*.mutable": {
"underline": false
}
}
},
"rust-analyzer.inlayHints.parameterHints": false
*/
},
//
Add the IDs of extensions you want installed when the container is created.
"extensions"
: [
"
rust-lang.rust-analyzer
"
,
"
bungcip.better-toml
"
,
"
vadimcn.vscode-lldb
"
,
"
eamodio.gitlens
"
,
"
streetsidesoftware.code-spell-checker
"
]
}
},
"remoteUser"
:
"
vscode
"
,
//
Start a TCP proxy from to the testing node-socket-io server so doc tests can pass.
"postAttachCommand"
: {
"SocketIOProxy"
:
"
socat TCP-LISTEN:4200,fork,reuseaddr TCP:node-socket-io:4200
"
,
"EngineIOProxy"
:
"
socat TCP-LISTEN:4201,fork,reuseaddr TCP:node-engine-io:4201
"
,
"SocketIOAuthProxy"
:
"
socat TCP-LISTEN:4204,fork,reuseaddr TCP:node-socket-io-auth:4204
"
}
}
Back
|
FazBrowse Home
|
New Git URL