oulh commited on
Commit
46942f8
1 Parent(s): 30c76ef

Create help

Browse files
Files changed (1) hide show
  1. help +51 -0
help ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ===== Application Startup at 2023-09-07 03:37:12 =====
2
+
3
+ [2023-09-07T03:43:02.053Z] info Wrote default config file to ~.config/code-server/config.yaml
4
+ code-server 4.16.1 94ef3776ad7bebfb5780dfc9632e04d20d5c9a6c with Code 1.80.2
5
+
6
+ Usage: code-server [options] [path]
7
+ - Opening a directory: code-server ./path/to/your/project
8
+ - Opening a saved workspace: code-server ./path/to/your/project.code-workspace
9
+
10
+ Options
11
+ --auth The type of authentication to use. [password, none]
12
+ --password The password for password authentication (can only be passed in via $PASSWORD or the config file).
13
+ --hashed-password The password hashed with argon2 for password authentication (can only be passed in via $HASHED_PASSWORD or the config file).
14
+ Takes precedence over 'password'.
15
+ --cert Path to certificate. A self signed certificate is generated if none is provided.
16
+ --cert-host Hostname to use when generating a self signed certificate.
17
+ --cert-key Path to certificate key when using non-generated cert.
18
+ --disable-telemetry Disable telemetry.
19
+ --disable-update-check Disable update check. Without this flag, code-server checks every 6 hours against the latest github release and
20
+ then notifies you once every week that a new release is available.
21
+ --disable-file-downloads Disable file downloads from Code. This can also be set with CS_DISABLE_FILE_DOWNLOADS set to 'true' or '1'.
22
+ --disable-workspace-trust Disable Workspace Trust feature. This switch only affects the current session.
23
+ --disable-getting-started-override Disable the coder/coder override in the Help: Getting Started page.
24
+ --disable-proxy Disable domain and path proxy routes.
25
+ -h --help Show this output.
26
+ --locale Set vscode display language and language to show on the login page, more info see
27
+ https://en.wikipedia.org/wiki/IETF_language_tag
28
+ --open Open in browser on startup. Does not work remotely.
29
+ --bind-addr Address to bind to in host:port. You can also use $PORT to override the port.
30
+ --config Path to yaml config file. Every flag maps directly to a key in the config file.
31
+ --socket Path to a socket (bind-addr will be ignored).
32
+ --socket-mode File mode of the socket.
33
+ --trusted-origins Disables authenticate origin check for trusted origin. Useful if not able to access reverse proxy configuration.
34
+ -v --version Display version information.
35
+ --user-data-dir Path to the user data directory.
36
+ --extensions-dir Path to the extensions directory.
37
+ --list-extensions List installed VS Code extensions.
38
+ --force Avoid prompts when installing VS Code extensions.
39
+ --install-extension Install or update a VS Code extension by id or vsix. The identifier of an extension is `${publisher}.${name}`.
40
+ To install a specific version provide `@${version}`. For example: 'vscode.csharp@1.2.3'.
41
+ --enable-proposed-api Enable proposed API features for extensions. Can receive one or more extension IDs to enable individually.
42
+ --uninstall-extension Uninstall a VS Code extension by id.
43
+ --show-versions Show VS Code extension versions.
44
+ --github-auth GitHub authentication token (can only be passed in via $GITHUB_TOKEN or the config file).
45
+ --proxy-domain Domain used for proxying ports.
46
+ -e --ignore-last-opened Ignore the last opened directory or workspace in favor of an empty window.
47
+ -n --new-window Force to open a new window.
48
+ -r --reuse-window Force to open a file or folder in an already opened window.
49
+ -vvv --verbose Enable verbose logging.
50
+ -an --app-name The name to use in branding. Will be shown in titlebar and welcome message
51
+ -w --welcome-text Text to show on login page