Skip to content

Commit

Permalink
fix(agent): update config.toml template. (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
icycodes authored Oct 30, 2023
1 parent e880973 commit f991b8b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions clients/tabby-agent/src/AgentConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,15 @@ const configTomlTemplate = `## Tabby agent configuration file
## Configurations in this file has lower priority than in IDE settings.
## Server
## You can set the server endpoint and authentication token here.
## You can set the server endpoint here, and auth token if server requires.
# [server]
# endpoint = "http://localhost:8080" # http or https URL
# token = "your-token-here" # if server requires authentication
# token = "your-token-here" # if token is set, request header Authorization = "Bearer $token" will be added automatically
## You can add custom request headers.
# [server.requestHeaders]
# Header1 = "Value1" # list your custom headers here
# Header2 = "Value2" # value can be string, number or boolean
# Authorization = "Bearer your-token-here" # if Authorization header is set, server.token will be ignored
## Logs
## You can set the log level here. The log file is located at ~/.tabby-client/agent/logs/.
Expand Down

0 comments on commit f991b8b

Please sign in to comment.