From 6aac2d62be855f6fd05eaa43f3fac911006dcb5f Mon Sep 17 00:00:00 2001 From: kevgliss Date: Tue, 1 Dec 2015 09:39:56 -0800 Subject: [PATCH] Closes #160 --- gulp/build.js | 2 +- lemur/static/app/angular/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gulp/build.js b/gulp/build.js index 3bc41eaf..82305a18 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -238,8 +238,8 @@ gulp.task('build:images', function () { gulp.task('package:strip', function () { return gulp.src(['lemur/static/dist/scripts/main*']) - .pipe(replace('http:\/\/localhost:5000', '')) .pipe(replace('http:\/\/localhost:3000', '')) + .pipe(replace('http:\/\/localhost:8000', '')) .pipe(useref()) .pipe(revReplace()) .pipe(gulp.dest('lemur/static/dist/scripts')) diff --git a/lemur/static/app/angular/app.js b/lemur/static/app/angular/app.js index 5f395a68..3830a672 100644 --- a/lemur/static/app/angular/app.js +++ b/lemur/static/app/angular/app.js @@ -74,7 +74,7 @@ lemur.service('DefaultService', function (LemurRestangular) { lemur.factory('LemurRestangular', function (Restangular, $location, $auth) { return Restangular.withConfig(function (RestangularConfigurer) { - RestangularConfigurer.setBaseUrl('http://localhost:5000/api/1'); + RestangularConfigurer.setBaseUrl('http://localhost:8000/api/1'); RestangularConfigurer.setDefaultHttpFields({withCredentials: true}); RestangularConfigurer.addResponseInterceptor(function (data, operation) {