blob: 2357f7718baffdb40a6e40e475b72c88306585ea [file] [log] [blame]
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08001/// <reference path="../../../typings/index.d.ts"/>
2
3export interface IAppConfig {
4 apiEndpoint: string;
5 websocketClient: string;
6}
7
8export const AppConfig: IAppConfig = {
Matteo Scandolo9f87f302016-12-13 18:11:10 -08009 apiEndpoint: 'http://xos-rest-gw:3000/api',
10 websocketClient: 'http://xos-rest-gw:3000'
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080011};