mirror of
https://github.com/Permissionless-Software-Foundation/x402-base-facilitator.git
synced 2026-09-21 16:52:01 -07:00
13 lines
345 B
JavaScript
13 lines
345 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.
|
|
*/
|
|
|
|
module.exports = {
|
|
session: 'secret-boilerplate-token',
|
|
token: 'secret-jwt-token',
|
|
database: 'mongodb://localhost:27017/ipfs-service-test',
|
|
env: 'test'
|
|
}
|