Files
ipfs-bch-wallet-service/config/env/development.js
T

13 lines
323 B
JavaScript
Raw Normal View History

2021-07-13 12:34:51 -07:00
/*
These are the environment settings for the DEVELOPMENT environment.
This is the environment run by default with `npm start` if KOA_ENV is not
specified.
*/
2022-09-08 08:58:39 -07:00
export default {
2021-07-13 12:34:51 -07:00
session: 'secret-boilerplate-token',
token: 'secret-jwt-token',
2021-07-17 11:24:00 -07:00
database: 'mongodb://localhost:27017/bch-service-dev',
2021-07-13 12:34:51 -07:00
env: 'dev'
}