mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
/*
|
|
Common configuration settings.
|
|
*/
|
|
|
|
const config = {
|
|
apiTokenSecret: process.env.TOKENSECRET
|
|
? process.env.TOKENSECRET
|
|
: 'secret-jwt-token'
|
|
}
|
|
|
|
module.exports = config
|