mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 09:12:05 -07:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
/*
|
|
Common configuration settings.
|
|
*/
|
|
|
|
const electrumxConfig = require('./electrumx')
|
|
|
|
const config = {
|
|
apiTokenSecret: process.env.TOKENSECRET ? process.env.TOKENSECRET : 'secret-jwt-token',
|
|
electrumx: electrumxConfig
|
|
}
|
|
|
|
module.exports = config
|