feat(types,module-sdk): setup authentication module skeleton (#5943)

**What**
- add authentication module skeleton
This commit is contained in:
Philip Korsholm
2023-12-21 07:56:20 +01:00
committed by GitHub
parent 3f6d79961d
commit 6d1e3cc028
44 changed files with 720 additions and 0 deletions

View File

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