docs: oas (#197)

Adds OpenAPI specification of Storefront and Admin APIs.
Updates docs project.
This commit is contained in:
Sebastian Rindom
2021-03-10 11:51:54 +01:00
committed by GitHub
parent 975de99ee7
commit 8edb32c742
240 changed files with 23592 additions and 419 deletions
+32
View File
@@ -0,0 +1,32 @@
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();