mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 01:02:00 -07:00
14 lines
371 B
JavaScript
14 lines
371 B
JavaScript
/*
|
|
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.
|
|
*/
|
|
|
|
export default {
|
|
session: 'secret-boilerplate-token',
|
|
token: 'secret-jwt-token',
|
|
database: 'mongodb://localhost:27017/bch-swap-service-test',
|
|
env: 'test',
|
|
nostrRelay: 'wss://'
|
|
}
|