Select Git revision
calculator.py
Forked from an inaccessible project.
config.js 740 B
/**
* Created by jeremyguiselin on 25/09/2016.
*/
(function (angular){
"use strict";
angular.module('Config')
.constant("constantConfig", {
"apiClient": "betskills",
"appStaging": "development",
"apiUrl": "http://betskills.dev/api/",
"imgUrl": "http://betskills.dev/img/application/"
});
angular.module('Config')
.constant("notificationConfig",{
'core': {
'app_id': 'com.jeremyguiselin.betskills'
},
'push': {
'sender_id': '1006878207346',
'pluginConfig': {
'ios': {
'badge': true,
'sound': true
},
'android': {
'iconColor': '#343434'
}
}
}
});
})(angular);