|
|
@ -1,24 +1,24 @@ |
|
|
|
import Application from "wms-core/Application"; |
|
|
|
import Migration, {MigrationType} from "wms-core/db/Migration"; |
|
|
|
import CreateMigrationsTable from "wms-core/migrations/CreateMigrationsTable"; |
|
|
|
import ExpressAppComponent from "wms-core/components/ExpressAppComponent"; |
|
|
|
import NunjucksComponent from "wms-core/components/NunjucksComponent"; |
|
|
|
import MysqlComponent from "wms-core/components/MysqlComponent"; |
|
|
|
import LogRequestsComponent from "wms-core/components/LogRequestsComponent"; |
|
|
|
import RedisComponent from "wms-core/components/RedisComponent"; |
|
|
|
import ServeStaticDirectoryComponent from "wms-core/components/ServeStaticDirectoryComponent"; |
|
|
|
import MaintenanceComponent from "wms-core/components/MaintenanceComponent"; |
|
|
|
import MailComponent from "wms-core/components/MailComponent"; |
|
|
|
import SessionComponent from "wms-core/components/SessionComponent"; |
|
|
|
import RedirectBackComponent from "wms-core/components/RedirectBackComponent"; |
|
|
|
import FormHelperComponent from "wms-core/components/FormHelperComponent"; |
|
|
|
import CsrfProtectionComponent from "wms-core/components/CsrfProtectionComponent"; |
|
|
|
import WebSocketServerComponent from "wms-core/components/WebSocketServerComponent"; |
|
|
|
import Application from "swaf/Application"; |
|
|
|
import Migration, {MigrationType} from "swaf/db/Migration"; |
|
|
|
import CreateMigrationsTable from "swaf/migrations/CreateMigrationsTable"; |
|
|
|
import ExpressAppComponent from "swaf/components/ExpressAppComponent"; |
|
|
|
import NunjucksComponent from "swaf/components/NunjucksComponent"; |
|
|
|
import MysqlComponent from "swaf/components/MysqlComponent"; |
|
|
|
import LogRequestsComponent from "swaf/components/LogRequestsComponent"; |
|
|
|
import RedisComponent from "swaf/components/RedisComponent"; |
|
|
|
import ServeStaticDirectoryComponent from "swaf/components/ServeStaticDirectoryComponent"; |
|
|
|
import MaintenanceComponent from "swaf/components/MaintenanceComponent"; |
|
|
|
import MailComponent from "swaf/components/MailComponent"; |
|
|
|
import SessionComponent from "swaf/components/SessionComponent"; |
|
|
|
import RedirectBackComponent from "swaf/components/RedirectBackComponent"; |
|
|
|
import FormHelperComponent from "swaf/components/FormHelperComponent"; |
|
|
|
import CsrfProtectionComponent from "swaf/components/CsrfProtectionComponent"; |
|
|
|
import WebSocketServerComponent from "swaf/components/WebSocketServerComponent"; |
|
|
|
import HomeController from "./controllers/HomeController"; |
|
|
|
import AutoUpdateComponent from "wms-core/components/AutoUpdateComponent"; |
|
|
|
import AutoUpdateComponent from "swaf/components/AutoUpdateComponent"; |
|
|
|
import packageJson = require('../package.json'); |
|
|
|
import DummyMigration from "wms-core/migrations/DummyMigration"; |
|
|
|
import DropLegacyLogsTable from "wms-core/migrations/DropLegacyLogsTable"; |
|
|
|
import DummyMigration from "swaf/migrations/DummyMigration"; |
|
|
|
import DropLegacyLogsTable from "swaf/migrations/DropLegacyLogsTable"; |
|
|
|
|
|
|
|
export default class App extends Application { |
|
|
|
public constructor( |
|
|
|