/ src / config / sequelizeConfig.ts
sequelizeConfig.ts
 1  /* eslint-disable import/no-import-module-exports */
 2  import appSettings from './appSettings';
 3  
 4  const config = {
 5    url: appSettings.postgresConnectionString,
 6    dialect: 'postgres',
 7    define: {
 8      schema: appSettings.network,
 9    },
10  };
11  
12  module.exports = config;