blob: 9bba19fdf205bb8b8d8749f543cbebacb83fc153 [file] [log] [blame]
Matteo Scandolo6b69f502016-06-03 10:42:00 -07001(function () {
2 angular.module('mCord')
3 .value('baseUrl', (function(){
4 if (process.env.MOCK === 'true') {
5 return 'http://private-c85424-progranrestapi.apiary-mock.com/';
6 } else {
7 return '';
8 }
9 })())
10})();