feat: Add skeleton for Store module (#6506)

This commit is contained in:
Stevche Radevski
2024-02-26 12:00:48 +00:00
committed by GitHub
parent 8ea37d03c9
commit 63be07031b
30 changed files with 428 additions and 0 deletions
+8
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-store",
type: "postgresql",
}