blob: 6ae83a499bd59a4328f23b2a7270d0514f8ca695 [file] [log] [blame]
Matteo Scandolo43ffb672016-12-02 14:49:58 -08001/// <reference path="../../../typings/index.d.ts"/>
2
3export interface IAppConfig {
4 apiEndpoint: string;
5 websocketClient: string;
6}
7
8export const AppConfig: IAppConfig = {
9 apiEndpoint: 'http://xos-rest-gw:3000/api',
10 websocketClient: 'http://xos-rest-gw:3000/socket.io/socket.io.js'
11};