Files

13 lines
348 B
JavaScript
Raw Permalink Normal View History

2021-11-23 08:38:01 -08:00
/*
These are the environment settings for the TEST environment.
This is the environment run with `npm start` if KOA_ENV=test.
This is the environment run by the test suite.
*/
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-test',
2021-11-23 08:38:01 -08:00
env: 'test'
}