MED-105: create analysis results page

This commit is contained in:
Danel Kungla
2025-07-15 17:12:52 +03:00
parent 0af3823148
commit 87dfcf55e6
19 changed files with 6213 additions and 25 deletions

View File

@@ -1,14 +1,14 @@
import Medusa from "@medusajs/js-sdk"
import Medusa from "@medusajs/js-sdk";
// Defaults to standard port for Medusa server
let MEDUSA_BACKEND_URL = "http://localhost:9000"
let MEDUSA_BACKEND_URL = "http://localhost:9000";
if (process.env.MEDUSA_BACKEND_URL) {
MEDUSA_BACKEND_URL = process.env.MEDUSA_BACKEND_URL
MEDUSA_BACKEND_URL = process.env.MEDUSA_BACKEND_URL;
}
console.log("MEDUSA_BACKEND_URL", MEDUSA_BACKEND_URL);
export const sdk = new Medusa({
baseUrl: MEDUSA_BACKEND_URL,
debug: process.env.NODE_ENV === "development",
publishableKey: process.env.NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY,
})
});