* feat: Add CartModule foundation * remove migration * fix ts issue * Create hot-dingos-pay.md
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
#!/usr/bin/env node
|
|
|
|
export default (async () => {
|
|
const { runMigrations } = await import("../migration-up")
|
|
const { config } = await import("dotenv")
|
|
config()
|
|
await runMigrations()
|
|
})()
|