You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ jobs:
86
86
# while downloading dependencies. Workaround: offload some
87
87
# of the deps download to the clojure CLI tool.
88
88
#
89
-
# See https://clojure.atlassian.net/jira/software/c/projects/TBUILD/issues?jql=project%20%3D%20TBUILD%20ORDER%20BY%20created%20DESC&selectedIssue=TBUILD-47
89
+
# See https://clojure.atlassian.net/browse/TBUILD-47
Copy file name to clipboardExpand all lines: docs/configuration.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,19 @@ It's possible to retrieve content of any configs with a string value using the `
57
57
-`classpath`: `${classpath:path/to/eca/file}` to get a file content from [ECA's classpath](https://github.com/editor-code-assistant/eca/tree/master/resources)
58
58
-`netrc`: Support Unix RC [credential files](./models.md#credential-file-authentication)
59
59
60
+
## Proxy Configuration
61
+
62
+
ECA supports proxies with basic cleartext authentication via the de-facto env vars:
63
+
64
+
```bash
65
+
HTTP_PROXY="http://user:pass@host:port"
66
+
HTTPS_PROXY="http://user:pass@host:port"
67
+
http_proxy="http://user:pass@host:port"
68
+
https_proxy="http://user:pass@host:port"
69
+
```
70
+
71
+
Lowercase var wins if both are set. Credentials (if used) must match for HTTP and HTTPS.
72
+
60
73
## Providers / Models
61
74
62
75
For providers and models configuration check the [dedicated models section](./models.md#custom-providers).
0 commit comments