Files
bch-dex/config/env/test.js
T

14 lines
371 B
JavaScript
Raw Normal View History

2022-02-23 05:51:12 -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 {
2022-02-23 05:51:12 -08:00
session: 'secret-boilerplate-token',
token: 'secret-jwt-token',
database: 'mongodb://localhost:27017/bch-swap-service-test',
2024-11-25 14:11:21 -04:00
env: 'test',
nostrRelay: 'wss://'
2022-02-23 05:51:12 -08:00
}