Skip to content

Change API base URL to secure endpoint#2

Open
Senter-7 wants to merge 1 commit intoKrut369:mainfrom
Senter-7:patch-1
Open

Change API base URL to secure endpoint#2
Senter-7 wants to merge 1 commit intoKrut369:mainfrom
Senter-7:patch-1

Conversation

@Senter-7
Copy link
Copy Markdown
Contributor

@Senter-7 Senter-7 commented Mar 28, 2026

Summary by Sourcery

Enhancements:

  • Switch the document service API base URL from an HTTP IP address to the new HTTPS domain endpoint for document extraction.

@netlify
Copy link
Copy Markdown

netlify bot commented Mar 28, 2026

Deploy Preview for invoicen ready!

Name Link
🔨 Latest commit e2c28b3
🔍 Latest deploy log https://app.netlify.com/projects/invoicen/deploys/69c759277fec4f0008462663
😎 Deploy Preview https://deploy-preview-2--invoicen.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@sourcery-ai
Copy link
Copy Markdown

sourcery-ai bot commented Mar 28, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates the document extraction service to use a new HTTPS production endpoint instead of the previous hard-coded HTTP IP-based URL.

File-Level Changes

Change Details Files
Switch document extraction API base URL from an insecure IP-based HTTP endpoint to the new HTTPS domain endpoint. src/components/document/documentService.ts

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Copy Markdown

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've found 1 issue, and left some high level feedback:

  • Consider moving the API base URL into a configuration or environment variable instead of hardcoding it in the service so it can be more easily changed per environment (dev/stage/prod) without code changes.
Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- Consider moving the API base URL into a configuration or environment variable instead of hardcoding it in the service so it can be more easily changed per environment (dev/stage/prod) without code changes.

## Individual Comments

### Comment 1
<location path="src/components/document/documentService.ts" line_range="3" />
<code_context>
 import { ApiResponse } from "./types";

-const API_BASE_URL = "http://34.122.133.222:8000";
+const API_BASE_URL = "https://infernxt.com/py-extraction-endpoint/";

 export async function extractDocumentData(file: File): Promise<ApiResponse> {
</code_context>
<issue_to_address>
**suggestion:** Consider moving the API base URL into configuration/environment instead of hardcoding it.

This makes it harder to switch between dev/staging/prod and forces code changes for any endpoint update. Prefer reading the base URL from environment-specific config (env variable or build-time config) so this module stays deployment-agnostic.

Suggested implementation:

```typescript
const API_BASE_URL =
    process.env.REACT_APP_API_BASE_URL || "https://infernxt.com/py-extraction-endpoint/";

```

To fully implement this:
1. Define `REACT_APP_API_BASE_URL` in your environment files (e.g., `.env.development`, `.env.production`) with appropriate values for dev/staging/prod.
2. If this project does not use Create React App and instead uses another bundler (e.g., Vite), adjust the environment variable access pattern accordingly (for Vite, use `import.meta.env.VITE_API_BASE_URL` instead of `process.env.REACT_APP_API_BASE_URL`).
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

import { ApiResponse } from "./types";

const API_BASE_URL = "http://34.122.133.222:8000";
const API_BASE_URL = "https://infernxt.com/py-extraction-endpoint/";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Consider moving the API base URL into configuration/environment instead of hardcoding it.

This makes it harder to switch between dev/staging/prod and forces code changes for any endpoint update. Prefer reading the base URL from environment-specific config (env variable or build-time config) so this module stays deployment-agnostic.

Suggested implementation:

const API_BASE_URL =
    process.env.REACT_APP_API_BASE_URL || "https://infernxt.com/py-extraction-endpoint/";

To fully implement this:

  1. Define REACT_APP_API_BASE_URL in your environment files (e.g., .env.development, .env.production) with appropriate values for dev/staging/prod.
  2. If this project does not use Create React App and instead uses another bundler (e.g., Vite), adjust the environment variable access pattern accordingly (for Vite, use import.meta.env.VITE_API_BASE_URL instead of process.env.REACT_APP_API_BASE_URL).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant