1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/server/src/config.ts

10 lines
225 B
TypeScript
Raw Normal View History

2019-09-06 13:15:48 +02:00
import 'dotenv/config'
2019-03-25 11:52:24 +01:00
const config = {
2019-09-06 13:15:48 +02:00
app: { port: 4000 },
2020-01-31 18:25:39 +01:00
sendgridApiKey: process.env.SENDGRID_API_KEY || '',
2019-09-24 12:20:08 +02:00
ipfsGatewayUri: process.env.IPFS_GATEWAY_URI || 'https://gateway.ipfs.io'
2019-03-24 02:10:00 +01:00
}
2019-03-25 11:52:24 +01:00
export default config