* chore: create tests * chore: models * fix: passing initial tests * test: adds integration test * test: clean up integration implementation * fix: claims * fix: brightpearl + webshipper * tests: passing * fix: update claim items * fix: adds gitignore * fix: pr comments * fix: single migration * fix(medusa-plugin-segment): adds item claimed event to segment
33 lines
591 B
JavaScript
33 lines
591 B
JavaScript
const path = require("path");
|
|
const express = require("express");
|
|
const getPort = require("get-port");
|
|
|
|
const loaders = require("@medusajs/medusa/dist/loaders").default;
|
|
|
|
const initialize = async () => {
|
|
const app = express();
|
|
|
|
const { dbConnection } = await loaders({
|
|
directory: path.resolve(process.cwd()),
|
|
expressApp: app,
|
|
});
|
|
|
|
const PORT = await getPort();
|
|
|
|
return {
|
|
db: dbConnection,
|
|
app,
|
|
port: PORT,
|
|
};
|
|
};
|
|
|
|
const setup = async () => {
|
|
const { app, port } = await initialize();
|
|
|
|
app.listen(port, (err) => {
|
|
process.send(port);
|
|
});
|
|
};
|
|
|
|
setup();
|