code-server's config.yaml file
Where can I find documentation regarding code-server's config.yaml file? I'd like to know all the possible options I can insert there.
4 Replies
Is this what you were looking for?
Each key in the file maps directly to ahttps://coder.com/docs/code-server/latest/FAQ#how-does-the-config-file-workcode-server
flag (runcode-server --help
to see a listing of all the flags). Any flags passed tocode-server
will take priority over the config file.
FAQ - code-server v4.6.1 docs
Frequently asked questions on installing and running code-server.
I think so. I did and I guess those flags can be passed via the config.yaml file?
Yep that appears to be the case! You can also check the source code to see what it does exactly https://github.com/coder/code-server/blob/main/src/node/cli.ts#L639
thank you!