aboutsummaryrefslogblamecommitdiffstats
path: root/packages/pipeline/src/ormconfig.ts
blob: 2f5f7df335ca55c71d45f28f0763da6c963ad50b (plain) (tree)
1
2
3
4
5
6
7
8
9

                                            






                            
                               









                            
                               


                
                                   

                                                 
                       
                   
             
                                             
  
 
                        
import { ConnectionOptions } from 'typeorm';

import {
    Block,
    ExchangeCancelEvent,
    ExchangeCancelUpToEvent,
    ExchangeFillEvent,
    Relayer,
    SraOrder,
    SraOrdersObservedTimeStamp,
    Transaction,
} from './entities';

const entities = [
    Block,
    ExchangeCancelEvent,
    ExchangeCancelUpToEvent,
    ExchangeFillEvent,
    Relayer,
    SraOrder,
    SraOrdersObservedTimeStamp,
    Transaction,
];

const config: ConnectionOptions = {
    type: 'postgres',
    url: process.env.ZEROEX_DATA_PIPELINE_DB_URL,
    synchronize: false,
    logging: false,
    entities,
    migrations: ['./lib/migrations/**/*.js'],
};

module.exports = config;