File tree 4 files changed +52
-1
lines changed
en-us/docusaurus-plugin-content-docs/current/doc
zh-cn/docusaurus-plugin-content-docs/current/doc
4 files changed +52
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ npm-debug.log*
5
5
yarn-debug.log *
6
6
yarn-error.log *
7
7
lerna-debug.log *
8
- .vscode
9
8
10
9
# Diagnostic reports (https://nodejs.org/api/report.html)
11
10
report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "type" : " node" ,
6
+ "request" : " launch" ,
7
+ "name" : " Launch EN" ,
8
+ "skipFiles" : [
9
+ " <node_internals>/**"
10
+ ],
11
+ "runtimeExecutable" : " npm" ,
12
+ "runtimeArgs" : [
13
+ " run" ,
14
+ " start-en"
15
+ ]
16
+ },
17
+ {
18
+ "type" : " node" ,
19
+ "request" : " launch" ,
20
+ "name" : " Launch CN" ,
21
+ "skipFiles" : [
22
+ " <node_internals>/**"
23
+ ],
24
+ "runtimeExecutable" : " npm" ,
25
+ "runtimeArgs" : [
26
+ " run" ,
27
+ " start-cn"
28
+ ]
29
+ },
30
+ {
31
+ "type" : " node" ,
32
+ "request" : " launch" ,
33
+ "name" : " Build" ,
34
+ "skipFiles" : [
35
+ " <node_internals>/**"
36
+ ],
37
+ "runtimeExecutable" : " npm" ,
38
+ "runtimeArgs" : [
39
+ " run" ,
40
+ " build"
41
+ ]
42
+ }
43
+ ]
44
+ }
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ hide_table_of_contents: false
9
9
10
10
SRS supports JetBrains [ CLion] ( http://www.jetbrains.com/clion/ )
11
11
12
+ ## VSCode
13
+
14
+ See [ VSCode: Usage] ( https://github.com/ossrs/srs/blob/develop/.vscode/README.md ) for example.
15
+
12
16
## JetBrains
13
17
14
18
The clion of JetBrains, please open ` trunk/ide/srs_clion/CMakeLists.txt `
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ hide_table_of_contents: false
9
9
10
10
关于SRS的IDE(集成开发环境)。
11
11
12
+ ## VSCode
13
+
14
+ See [ VSCode: Usage] ( https://github.com/ossrs/srs/blob/develop/.vscode/README.md ) for example.
15
+
12
16
## CLion
13
17
14
18
SRS只支持JetBrains的[ CLion] ( http://www.jetbrains.com/clion/ ) ,它是基于cmake编译的。
You can’t perform that action at this time.
0 commit comments