FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
code-oss/scripts/code-server.bat at code-oss-esm · unlicense-code/code-oss · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
unlicense-code
/
code-oss
Public
forked from
lemanschik/code-oss
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
code-oss
/
scripts
/
code-server.bat
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (20 loc) · 517 Bytes
Breadcrumbs
code-oss
/
scripts
/
code-server.bat
Copy path
File metadata and controls
31 lines (20 loc) · 517 Bytes
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
@
echo
off
setlocal
title
VSCode Server
set
ROOT_DIR
=
%~dp0
..
pushd
%ROOT_DIR%
::
Configuration
set
NODE_ENV
=
development
set
VSCODE_DEV
=
1
::
Get electron, compile, built-in extensions
if
"
%VSCODE_SKIP_PRELAUNCH%
"
==
"
"
node build/lib/preLaunch.js
::
Node executable
FOR
/F
"
tokens=*
"
%%g
IN
('node build/lib/node.js')
do
(SET NODE=
%%g
)
if
not
exist
"
%NODE%
"
(
::
Download nodejs executable for remote
call
npm run gulp node
)
popd
::
Launch Server
call
"
%NODE%
"
%ROOT_DIR%
\scripts\code-server.js
%*
endlocal
Back
|
FazBrowse Home
|
New Git URL