UNPKG

medusajs-launch-utils

Version:

Build and launch utilities for Medusajs monorepo projects

19 lines (15 loc) 651 B
#!/usr/bin/env node const path = require('path'); const dotenv = require('dotenv'); const { checkBackend } = require('../src/awaitBackendReady'); // Load environment variables from .env.local if it exists dotenv.config({ path: path.resolve(process.cwd(), '.env.local') }); // Load environment variables from .env if it exists dotenv.config(); const backendUrl = (process.env.NEXT_PUBLIC_MEDUSA_BACKEND_URL || 'http://localhost:9000') + '/key-exchange'; checkBackend(backendUrl) .then(() => console.log('Backend is ready')) .catch((error) => { console.error('Error waiting for backend:', error); process.exit(1); });