Skip to content

Commit 29cb299

Browse files
Merge pull request #7 from pnnl-int/update-url
Update url
2 parents 86e21af + ce2aef0 commit 29cb299

23 files changed

Lines changed: 432 additions & 1288 deletions

.env.example

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
# COMcheck API Configuration
22

33
# Required: Your COMcheck API key
4-
# Get your API key from: https://becp-dev.pnl.gov/ahj/COM
54
COM_API_KEY=your-api-key-here
6-
7-
# Optional: Override default API URL
8-
# Default: https://becp-dev.pnl.gov/ahj/COM
9-
# COMCHECK_API_URL=https://becp-dev.pnl.gov/ahj/COM
10-
11-
# Optional: Logging configuration
12-
# LOG_LEVEL=INFO

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Your question here.
1212
Describe what you've already tried or where you've looked for answers:
1313
- [ ] Checked the README
1414
- [ ] Reviewed the examples/ directory
15-
- [ ] Read the documentation in docs/
1615
- [ ] Searched existing issues
1716

1817
## Context
@@ -25,4 +24,4 @@ Provide any relevant context about what you're trying to accomplish.
2524

2625
---
2726

28-
**Note:** Please check the [examples/](../../examples/) directory and [documentation](../../docs/) first. For usage questions, these are often the best resources.
27+
**Note:** Please check the [examples/](../../examples/) directory. For usage questions, these are often the best resources.

.github/pull_request_template.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@ If you've found a bug or have a suggestion:
1212
2. **Share Feedback**: Your feedback helps us improve the library
1313
3. **Use and Share**: Use the library and share your experiences
1414

15-
## For PNNL Internal Team Members
16-
17-
If you're part of the internal development team:
18-
- Ensure you're working from the internal repository
19-
- Follow the development guidelines in [docs/VERSION_CONTROL.md](../docs/VERSION_CONTROL.md)
20-
- Contact the team lead if you have questions
21-
2215
---
2316

2417
We appreciate your understanding and interest in the COMcheck API Python client!

comcheck_api/api/api_services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, api_key: str) -> None:
5151
)
5252
self.api_key = api_key
5353
self.base_url: str = os.getenv(
54-
"COMCHECK_API_URL", "https://becp-dev.pnl.gov/ahj/COM"
54+
"COMCHECK_API_URL", "https://comcheck.energycode.pnl.gov/checkweb-api/COM"
5555
)
5656
self._client: Optional[httpx.Client] = None
5757

0 commit comments

Comments
 (0)