Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Created June 20, 2019 06:43
Show Gist options
  • Save buildmotion/37cc30a3b8b156cbbcaa6c18243cfcfd to your computer and use it in GitHub Desktop.
Save buildmotion/37cc30a3b8b156cbbcaa6c18243cfcfd to your computer and use it in GitHub Desktop.
import {
IConfiguration,
IErrorHandingConfig,
ILogglyConfig
} from "@angularlicious/configuration";
import { ILoggingConfig } from "@angularlicious/logging";
export class AppConfig implements IConfiguration {
applicationName: "BuildMotion";
version: "2.0.0";
loggingConfig: ILoggingConfig = {
applicationName: this.applicationName,
isProduction: false,
version: this.version
};
errorHandlingConfig: IErrorHandingConfig = {
applicationName: this.applicationName,
includeDefaultErrorHandling: true
};
logglyConfig: ILogglyConfig = {
apiKey: "ADD-YOUR-API-KEY-HERE",
sendConsoleErrors: true
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment