Files

13 lines
328 B
JavaScript
Raw Permalink Normal View History

2022-02-23 05:51:12 -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 {
2022-02-23 05:51:12 -08:00
session: 'secret-boilerplate-token',
token: 'secret-jwt-token',
database: 'mongodb://localhost:27017/bch-swap-service-dev',
2022-02-23 05:51:12 -08:00
env: 'dev'
}