mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import 'dotenv/config'
|
|
|
|
const config = {
|
|
app: { port: 4000 },
|
|
sendgridApiKey: process.env.SENDGRID_API_KEY || '',
|
|
ipfsGatewayUri: process.env.IPFS_GATEWAY_URI || 'https://gateway.ipfs.io'
|
|
}
|
|
|
|
export default config
|