**What** Scafold the fulfillment module basic structure **Bonus** Simplified module scaffolding with new factories and less directories to manage - mikro orm connection loader factory - initialize factory FIXES CORE-1709 FIXES CORE-1710
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import * as entities from "./src/models"
|
|
|
|
module.exports = {
|
|
entities: Object.values(entities),
|
|
schema: "public",
|
|
clientUrl: "postgres://postgres@localhost/medusa-fulfillment",
|
|
type: "postgresql",
|
|
}
|