File tree 3 files changed +7
-9
lines changed
3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -56,10 +56,6 @@ code-server.
56
56
We also have an in-depth [ setup and
57
57
configuration] ( https://coder.com/docs/code-server/latest/guide ) guide.
58
58
59
- ## TLS and authentication (beta)
60
-
61
- To add TLS and authentication out of the box, use [ code-server --link] ( https://coder.com/docs/code-server/latest/link ) .
62
-
63
59
## Questions?
64
60
65
61
See answers to [ frequently asked
Original file line number Diff line number Diff line change 1
1
# code-server --link
2
2
3
- Run code-server with the beta flag ` --link ` and you'll get TLS, authentication, and a dedicated URL
3
+ > Note: This feature is no longer recommended due to instability. Stay tuned for a revised version.
4
+
5
+ Run code-server with the flag ` --link ` and you'll get TLS, authentication, and a dedicated URL
4
6
for accessing your IDE out of the box.
5
7
6
8
``` console
Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ interface Option<T> {
104
104
description ?: string
105
105
106
106
/**
107
- * If marked as beta , the option is marked as beta in help.
107
+ * If marked as deprecated , the option is marked as deprecated in help.
108
108
*/
109
- beta ?: boolean
109
+ deprecated ?: boolean
110
110
}
111
111
112
112
type OptionType < T > = T extends boolean
@@ -230,7 +230,7 @@ const options: Options<Required<UserProvidedArgs>> = {
230
230
https://hostname-username.cdr.co at which you can easily access your code-server instance.
231
231
Authorization is done via GitHub.
232
232
` ,
233
- beta : true ,
233
+ deprecated : true ,
234
234
} ,
235
235
}
236
236
@@ -253,7 +253,7 @@ export const optionDescriptions = (): string[] => {
253
253
. map ( ( line , i ) => {
254
254
line = line . trim ( )
255
255
if ( i === 0 ) {
256
- return " " . repeat ( widths . long - k . length ) + ( v . beta ? "(beta ) " : "" ) + line
256
+ return " " . repeat ( widths . long - k . length ) + ( v . deprecated ? "(deprecated ) " : "" ) + line
257
257
}
258
258
return " " . repeat ( widths . long + widths . short + 6 ) + line
259
259
} )
You can’t perform that action at this time.
0 commit comments