aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-11-13 08:40:20 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:24:48 +0800
commit329c68f610843ebded9ca31fc9cd6f3eed744a8e (patch)
tree166b089d14a10e47e206a971998597960e267790 /packages/pipeline/src
parent6fb333f2003a67277a7605332f146adb2758cdd0 (diff)
downloaddexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.tar
dexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.tar.gz
dexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.tar.bz2
dexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.tar.lz
dexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.tar.xz
dexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.tar.zst
dexon-0x-contracts-329c68f610843ebded9ca31fc9cd6f3eed744a8e.zip
Configure TypeORM for migrations. Add new package.json scripts.
Diffstat (limited to 'packages/pipeline/src')
-rw-r--r--packages/pipeline/src/ormconfig.ts25
-rw-r--r--packages/pipeline/src/scripts/pull_missing_events.ts6
-rw-r--r--packages/pipeline/src/scripts/update_relayer_info.ts6
3 files changed, 11 insertions, 26 deletions
diff --git a/packages/pipeline/src/ormconfig.ts b/packages/pipeline/src/ormconfig.ts
index 39b496ace..95c27eeba 100644
--- a/packages/pipeline/src/ormconfig.ts
+++ b/packages/pipeline/src/ormconfig.ts
@@ -20,28 +20,13 @@ const entities = [
Transaction,
];
-export const testConfig: ConnectionOptions = {
- type: 'sqlite',
- database: 'database.sqlite',
- synchronize: true,
- logging: false,
- entities,
- migrations: ['./lib/src/migrations/**/*.js'],
- cli: {
- entitiesDir: 'lib/src/entities',
- migrationsDir: 'lib/src/migrations',
- },
-};
-
-export const deployConfig: ConnectionOptions = {
+const config: ConnectionOptions = {
type: 'postgres',
url: process.env.ZEROEX_DATA_PIPELINE_DB_URL,
- synchronize: true,
+ synchronize: false,
logging: false,
entities,
- migrations: ['./lib/src/migrations/**/*.js'],
- cli: {
- entitiesDir: 'lib/src/entities',
- migrationsDir: 'lib/src/migrations',
- },
+ migrations: ['./lib/migrations/**/*.js'],
};
+
+module.exports = config as ConnectionOptions;
diff --git a/packages/pipeline/src/scripts/pull_missing_events.ts b/packages/pipeline/src/scripts/pull_missing_events.ts
index cca0d9cfe..e2b312280 100644
--- a/packages/pipeline/src/scripts/pull_missing_events.ts
+++ b/packages/pipeline/src/scripts/pull_missing_events.ts
@@ -2,11 +2,11 @@ import { web3Factory } from '@0x/dev-utils';
import { Web3ProviderEngine } from '@0x/subproviders';
import R = require('ramda');
import 'reflect-metadata';
-import { Connection, createConnection, Repository } from 'typeorm';
+import { Connection, ConnectionOptions, createConnection, Repository } from 'typeorm';
import { ExchangeEventsSource } from '../data_sources/contract-wrappers/exchange_events';
import { ExchangeFillEvent } from '../entities';
-import { deployConfig } from '../ormconfig';
+import * as ormConfig from '../ormconfig';
import { parseExchangeEvents } from '../parsers/events';
import { handleError } from '../utils';
@@ -17,7 +17,7 @@ const BATCH_SAVE_SIZE = 1000; // Number of events to save at once.
let connection: Connection;
(async () => {
- connection = await createConnection(deployConfig);
+ connection = await createConnection(ormConfig as ConnectionOptions);
const provider = web3Factory.getRpcProvider({
rpcUrl: 'https://mainnet.infura.io',
});
diff --git a/packages/pipeline/src/scripts/update_relayer_info.ts b/packages/pipeline/src/scripts/update_relayer_info.ts
index 051289992..af9dd726e 100644
--- a/packages/pipeline/src/scripts/update_relayer_info.ts
+++ b/packages/pipeline/src/scripts/update_relayer_info.ts
@@ -1,9 +1,9 @@
import 'reflect-metadata';
-import { Connection, createConnection } from 'typeorm';
+import { Connection, ConnectionOptions, createConnection } from 'typeorm';
import { RelayerRegistrySource } from '../data_sources/relayer-registry';
import { Relayer } from '../entities';
-import { deployConfig } from '../ormconfig';
+import * as ormConfig from '../ormconfig';
import { parseRelayers } from '../parsers/relayer_registry';
import { handleError } from '../utils';
@@ -15,7 +15,7 @@ const RELAYER_REGISTRY_URL =
let connection: Connection;
(async () => {
- connection = await createConnection(deployConfig);
+ connection = await createConnection(ormConfig as ConnectionOptions);
await getRelayers();
process.exit(0);
})().catch(handleError);