-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ts
72 lines (62 loc) · 2.09 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* This file is part of INU Cafeteria.
*
* Copyright 2022 INU Global App Center <[email protected]>
*
* INU Cafeteria is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* INU Cafeteria is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {isProduction} from './lib/common/utils/nodeEnv';
import {getEnv, getSecret} from '@inu-cafeteria/backend-core';
export default {
isProduction: isProduction(),
server: {
port: Number(getEnv('PORT')) || 8090,
},
cors: {
allowedHostsInProduction: ['https://console.inu-cafeteria.app'],
},
cookie: {
domain: isProduction() ? 'inu-cafeteria.app' : undefined,
tokenName: 'cafeteria-console-server-token',
},
aws: {
cloudwatch: {
logGroupName: 'cafeteria-console-server',
serviceLogFetchParams: {
logGroupName: 'cafeteria-server',
logStreamName: 'combined',
},
},
region: 'ap-northeast-2',
accessKeyId: getSecret('AWS_ACCESS_KEY_ID') || 'an_aws_id',
secretAccessKey: getSecret('AWS_SECRET_ACCESS_KEY') || 'blahblah',
},
auth: {
key: getSecret('JWT_SECRET_KEY') || 'whatever',
expiresIn: '24h',
adminUsername: getSecret('ADMIN_ID') || 'potados',
adminPassword: getSecret('ADMIN_PW') || '1234',
},
microservices: {
endpoints: {
api: {
baseUrl: isProduction() ? 'https://api.inu-cafeteria.app' : 'http://localhost:9999',
bookingsUpdated: `${apiServerBaseUrl()}/internal/updates/bookings`,
},
},
},
};
function apiServerBaseUrl() {
return isProduction() ? 'https://api.inu-cafeteria.app' : 'http://localhost:9999';
}