mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-service.git
synced 2026-09-21 16:52:03 -07:00
12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
const env = process.env.NODE_ENV || 'development'
|
|
|
|
const config = {
|
|
common: {
|
|
port: process.env.PORT || 5000
|
|
},
|
|
development: {},
|
|
production: {}
|
|
}
|
|
|
|
export default Object.assign({}, config.common, config[env])
|