index.hbs 213 B

12345678
  1. import { bootstrap, runMigrations } from '@vendure/core';
  2. import { config } from './vendure-config';
  3. runMigrations(config)
  4. .then(() => bootstrap(config))
  5. .catch(err => {
  6. console.log(err);
  7. });