Files
medusa-store/packages/authentication/mikro-orm.config.dev.ts
Philip Korsholm 6d1e3cc028 feat(types,module-sdk): setup authentication module skeleton (#5943)
**What**
- add authentication module skeleton
2023-12-21 06:56:20 +00:00

9 lines
210 B
TypeScript

import * as entities from "./src/models"
module.exports = {
entities: Object.values(entities),
schema: "public",
clientUrl: "postgres://postgres@localhost/medusa-authentication",
type: "postgresql",
}