Remove sensitive keys from config.toml and update .gitignore to include node_modules
Browse files- .codex/config.toml +0 -6
- .gitignore +3 -1
.codex/config.toml
CHANGED
|
@@ -1,8 +1,2 @@
|
|
| 1 |
[shell_environment_policy]
|
| 2 |
inherit = "core"
|
| 3 |
-
|
| 4 |
-
[shell_environment_policy.set]
|
| 5 |
-
ANTHROPIC_API_KEY = ""
|
| 6 |
-
ANTHROPIC_AUTH_TOKEN = "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"
|
| 7 |
-
ANTHROPIC_BASE_URL = "https://openrouter.ai/api"
|
| 8 |
-
ANTHROPIC_MODEL = "qwen/qwen3-coder:free"
|
|
|
|
| 1 |
[shell_environment_policy]
|
| 2 |
inherit = "core"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.gitignore
CHANGED
|
@@ -13,4 +13,6 @@ __pycache__/
|
|
| 13 |
# Common Python tooling caches
|
| 14 |
.pytest_cache/
|
| 15 |
.mypy_cache/
|
| 16 |
-
.ruff_cache/
|
|
|
|
|
|
|
|
|
| 13 |
# Common Python tooling caches
|
| 14 |
.pytest_cache/
|
| 15 |
.mypy_cache/
|
| 16 |
+
.ruff_cache/
|
| 17 |
+
|
| 18 |
+
node_modules/
|