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

                                            

          
             
                       


                            
                  

             
                               
                  
                           
                
                 



                    
             


                            
                       
                  

             
                               
                  
                           
                
                 

  
                                   

                                                 
                       
                       
             
                                             
  
 
                        
import { ConnectionOptions } from 'typeorm';

import {
    Block,
    DexTrade,
    ERC20ApprovalEvent,
    ExchangeCancelEvent,
    ExchangeCancelUpToEvent,
    ExchangeFillEvent,
    OHLCVExternal,
    Relayer,
    SraOrder,
    SraOrdersObservedTimeStamp,
    TokenMetadata,
    TokenOrderbookSnapshot,
    Transaction,
    TrustedToken,
} from './entities';

const entities = [
    Block,
    DexTrade,
    ExchangeCancelEvent,
    ExchangeCancelUpToEvent,
    ExchangeFillEvent,
    ERC20ApprovalEvent,
    OHLCVExternal,
    Relayer,
    SraOrder,
    SraOrdersObservedTimeStamp,
    TokenMetadata,
    TokenOrderbookSnapshot,
    Transaction,
    TrustedToken,
];

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

module.exports = config;