What: - Setups the skeleton for pricing module - Creates service/model/repository for currency model - Setups types - Setups DB - Moved some utils to a common place RESOLVES CORE-1477 RESOLVES CORE-1476
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
import * as entities from "./src/models"
|
|
|
|
module.exports = {
|
|
entities: Object.values(entities),
|
|
schema: "public",
|
|
clientUrl: "postgres://postgres@localhost/medusa-pricing",
|
|
type: "postgresql",
|
|
}
|