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

13 lines
329 B
JavaScript
Raw Normal View History

2021-11-23 08:38:01 -08: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-11-23 08:38:01 -08:00
session: 'secret-boilerplate-token',
token: 'secret-jwt-token',
2021-12-02 14:08:33 -08:00
database: 'mongodb://localhost:27017/ipfs-bch-consumer-dev',
2021-11-23 08:38:01 -08:00
env: 'dev'
}