-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.ts
64 lines (56 loc) · 2.2 KB
/
schema.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
/**
* SudoSOS back-end API service.
* Copyright (C) 2024 Study association GEWIS
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @license
*/
/**
* This is the module page of the schema.
*
* @module internal/database
*/
import { config } from 'dotenv';
import log4js from 'log4js';
import dinero, { Currency } from 'dinero.js';
import Database from './database';
import { Application } from '../index';
export default async function createApp() {
const application = new Application();
application.logger = log4js.getLogger('Seeder');
application.logger.level = process.env.LOG_LEVEL;
application.logger.info('Starting Schema Synchronizer');
application.connection = await Database.initialize();
// Silent in-dependency logs unless really wanted by the environment.
const logger = log4js.getLogger('Console');
logger.level = process.env.LOG_LEVEL;
console.log = (message: any, ...additional: any[]) => logger.debug(message, ...additional);
// Set up monetary value configuration.
dinero.defaultCurrency = process.env.CURRENCY_CODE as Currency;
dinero.defaultPrecision = parseInt(process.env.CURRENCY_PRECISION, 10);
try {
await application.connection.synchronize();
application.logger.info('Schema synchronized successfully');
await application.connection.destroy();
} catch (e) {
application.logger.error('Error synchronizing schema', e);
}
}
if (require.main === module) {
// Only execute the application directly if this is the main execution file.
config();
// eslint-disable-next-line @typescript-eslint/no-floating-promises
createApp();
}