- More, more, more...

This commit is contained in:
2019-07-04 23:06:04 -04:00
parent 6d5d238d34
commit af13551042
16 changed files with 348 additions and 94 deletions

View File

@@ -1,12 +1,15 @@
module.exports = {
name: 'wEvent API',
name: 'Eventment.io API',
env: process.env.NODE_ENV || 'development',
port: process.env.PORT || 3001,
base_url: process.env.BASE_URL || 'http://localhost:3000',
base_url: process.env.BASE_URL || 'http://localhost:3001',
api: {
url: 'http://localhost:3001',
},
db: {
uri: process.env.MONGODB_URI || 'mongodb://127.0.0.1:27017/wEvent-dev',
},
version: '0.0.1',
version: '0.1.0',
assetStoreUrl: 'https://www.google.com/',
services: {
apple: {},
@@ -21,10 +24,14 @@ module.exports = {
},
security: {
jwt: {
audience: 'wEvents.io',
audience: 'Eventment.io',
daysValid: 365,
issuer: 'patrons.wEvents.io',
issuer: 'patrons.eventment.io',
secret: 'Th!sIs a d3v3lopm3nt server $#cr¢T.',
},
reset: {
route: '/reset',
tokenPlaceholder: ':reset_token',
},
},
};