mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
* GitHub CI actions * add coverage job * test run tweaks * windows build fix * barge tweaks * deal with env vars * add npm publish job * trial & error * remove Travis * publish as single workflow * handle Docker Hub login * maybe preparing ~/.ocean is needed * downgrade barge contracts, run with barge defaults * put back ADDRESS_FILE env var * AQUARIUS_URI test * ddo creation test logging * make failing DDO creation test actually fail * separate unit/integration Asset tests * set AQUARIUS_URI again * readme updates * prepare ~/.ocean folder * separate tests into multiple jobs * address.json debugging * windows build fixes * address.json trials * env var expansion workaround * cleanup * debug coverage output * fix coverage * bump codeclimate-action * use barge instead of ganache (#855) * use barge instead of ganache * small unit test job cleanup Co-authored-by: Matthias Kretschmann <m@kretschmann.io> * barge detach workaround Co-authored-by: Alex Coseru <alex.coseru@gmail.com>
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
import { Config } from '../../src/models/Config'
|
|
import { LoggerInstance, LogLevel } from '../../src/utils'
|
|
|
|
LoggerInstance.setLevel(LogLevel.Error)
|
|
|
|
export default {
|
|
metadataCacheUri: 'http://localhost:5000',
|
|
providerUri: 'http://localhost:8030',
|
|
nodeUri: `http://localhost:${process.env.ETH_PORT || 8545}`,
|
|
verbose: LogLevel.Error
|
|
} as Config
|