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