AppReports/index.js
2020-08-23 13:08:04 +02:00

39 lines
983 B
JavaScript

/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of appreports which is released under GPL-3.0-or-later.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, August 2020
*/
// @ts-nocheck
'use strict';
const express = require ('express');
const body_parser = require ('body-parser');
const db = require ('./lib/db');
const api = require ('./lib/api');
const http_proxy = require ('express-http-proxy');
const history_fallback = require ('connect-history-api-fallback');
const { argv } = require ('yargs');
const is_dev = argv.dev;
(async () => {
await db.init (is_dev);
const app = express ();
app.use (body_parser.json ());
app.use (api);
app.use (history_fallback ());
if (is_dev)
app.use (http_proxy ('localhost:8080'));
else
app.use (express.static ('dist'));
app.listen (3000, () => {
// eslint-disable-next-line no-console
console.log ('listening on 3000');
});
}) ();