Skip to content

Commit f81e836

Browse files
committed
Merge branch 'master' of github.com:di-sukharev/opencommit
2 parents c3d1fb3 + a9c9bcf commit f81e836

28 files changed

+303
-89294
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
out/
23
coverage/
34
temp/
45
build/

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,16 @@ oco config set OCO_AI_PROVIDER=flowise OCO_API_KEY=<your_flowise_api_key> OCO_AP
237237
oco config set OCO_AI_PROVIDER=ollama OCO_API_KEY=<your_ollama_api_key> OCO_API_URL=<your_ollama_endpoint>
238238
```
239239

240+
### Use with Proxy
241+
242+
If you are behind a proxy, you can set it in the config:
243+
244+
```sh
245+
oco config set OCO_PROXY=http://127.0.0.1:7890
246+
```
247+
248+
Or it will automatically use `HTTPS_PROXY` or `HTTP_PROXY` environment variables.
249+
240250
### Locale configuration
241251

242252
To globally specify the language used to generate commit messages:

jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const config: Config = {
1919
'<rootDir>/test/e2e/prompt-module/data/'
2020
],
2121
transformIgnorePatterns: [
22-
'node_modules/(?!(cli-testing-library|@clack|cleye)/.*)'
22+
'node_modules/(?!(cli-testing-library|@clack|cleye|chalk)/.*)'
2323
],
2424
transform: {
2525
'^.+\\.(ts|tsx|js|jsx|mjs)$': [

0 commit comments

Comments
 (0)