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