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