Skip to main content
Module

x/mandarinets/main-core/MandarineEnvConstants.ts

Mandarine.TS is a typescript, decorator-driven framework that allows you to create server-side applications. Mandarine.TS provides a range of built-in solutions such as Dependency Injection, Components, ORM and more. Under its umbrella, Mandarine.TS has 4 modules: Core, Data, Security and MVC, these modules will offer you the requirements to build a Mandarine-powered application.
Latest
File
// Copyright 2020-2020 The Mandarine.TS Framework authors. All rights reserved. MIT license.
export class MandarineEnvironmentalConstants {
public static readonly MANDARINE_JSON_FILE: string = "MANDARINE_JSON_FILE"; public static readonly MANDARINE_PROPERTY_FILE: string = "MANDARINE_PROPERTY_FILE";
public static readonly MANDARINE_SERVER_HOST: string = "MANDARINE_SERVER_HOST"; public static readonly MANDARINE_SERVER_PORT: string = "MANDARINE_SERVER_PORT"; public static readonly MANDARINE_SERVER_RESPONSE_TIME_HEADER: string = "MANDARINE_SERVER_RESPONSE_TIME_HEADER"; public static readonly MANDARINE_SERVER_SESSION_MIDDLEWARE: string = "MANDARINE_SERVER_SESSION_MIDDLEWARE";
public static readonly MANDARINE_STATIC_CONTENT_FOLDER: string = "MANDARINE_STATIC_CONTENT_FOLDER"; public static readonly MANDARINE_AUTH_EXPIRATION_MS: string = "MANDARINE_AUTH_EXPIRATION_MS";
public static readonly MANDARINE_SESSIONS_TOUCH: string = "MANDARINE_SESSIONS_TOUCH"; public static readonly MANDARINE_SESSIONS_EXPIRATION_TIME: string = "MANDARINE_SESSIONS_EXPIRATION_TIME"; public static readonly MANDARINE_SESSIONS_EXPIRATION_INTERVAL: string = "MANDARINE_SESSIONS_EXPIRATION_INTERVAL";}