Commit ee2a5221 authored by Antek Grzanka's avatar Antek Grzanka

Quick fix for dev/prod address in AppSettings.

parent c2129daa
...@@ -38,8 +38,9 @@ ...@@ -38,8 +38,9 @@
}]); }]);
app.factory('AppSettings', function() { app.factory('AppSettings', function() {
var dev = "localhost:8080/api/v1", prod = "52.25.28.64:8080/api/v1";
return { return {
apiAddress: "localhost:8080/api/v1" apiAddress: prod
}; };
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment