* added NoteService and related endpoints && tests * removed snapshots * corrected error in service * removed snapshot * added the ability to note down author using a string * updated model for note * refactored to access logged in user * added other user id option * removed snapshot * updated according to feedback * removed snapshots * reintroduced snapshots * updated to snake case * removed try catch from use-db
35 lines
657 B
JavaScript
35 lines
657 B
JavaScript
const path = require("path")
|
|
const express = require("express")
|
|
const getPort = require("get-port")
|
|
const importFrom = require("import-from")
|
|
|
|
const initialize = async () => {
|
|
const app = express()
|
|
|
|
const cwd = process.cwd()
|
|
const loaders = importFrom(cwd, "@medusajs/medusa/dist/loaders").default
|
|
|
|
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()
|