Merge tag '3.4.2' into develop
3.4.2
5
.dockerignore
Normal file
@@ -0,0 +1,5 @@
|
||||
.git/
|
||||
node_modules/
|
||||
client/
|
||||
.tmp/
|
||||
npm-debug.log
|
||||
@@ -1 +1,8 @@
|
||||
FROM digitallyseamless/nodejs-bower-grunt-runtime
|
||||
FROM fergalmoran/node
|
||||
|
||||
ENV NODE_ENV production
|
||||
|
||||
WORKDIR /app/dist/
|
||||
ADD dist /app/dist/
|
||||
ENV NODE_ENV production
|
||||
CMD ["npm", "start"]
|
||||
|
||||
@@ -50,12 +50,13 @@ angular.module('dssWebApp', [
|
||||
popupOptions: {width: 580, height: 400}
|
||||
});
|
||||
$authProvider.twitter({
|
||||
url: '_a/?backend=twitter'
|
||||
url: '_a/?backend=twitter',
|
||||
redirectUri: window.location.origin + '/',
|
||||
});
|
||||
$authProvider.google({
|
||||
clientId: '248170132962-5km115budk9h84raa26hdmnnqdj8ivkl.apps.googleusercontent.com',
|
||||
clientId: '248170132962-gljba6svm1l8q73acmfc3ihkgp4orbnr.apps.googleusercontent.com',
|
||||
redirectUri: window.location.origin + '/',
|
||||
url: '/_a/?backend=google',
|
||||
url: '/_a/?backend=google'
|
||||
});
|
||||
ngClipProvider.setPath("bower_components/zeroclipboard/dist/ZeroClipboard.swf");
|
||||
|
||||
|
||||
@@ -76,8 +76,6 @@ angular.module('dssWebApp')
|
||||
}
|
||||
|
||||
function logoutUser() {
|
||||
return $q.resolve();
|
||||
/*
|
||||
var defer = $q.defer();
|
||||
$auth.logout()
|
||||
.then(function(){
|
||||
@@ -85,6 +83,5 @@ angular.module('dssWebApp')
|
||||
});
|
||||
|
||||
return defer.promise;
|
||||
*/
|
||||
}
|
||||
});
|
||||
|
||||
|
Before Width: | Height: | Size: 6.3 MiB |
|
Before Width: | Height: | Size: 8.8 MiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 8.2 MiB |
|
Before Width: | Height: | Size: 18 MiB |
|
Before Width: | Height: | Size: 5.2 MiB |
|
Before Width: | Height: | Size: 4.5 MiB |
|
Before Width: | Height: | Size: 4.6 MiB |
|
Before Width: | Height: | Size: 3.7 MiB |
|
Before Width: | Height: | Size: 4.4 MiB |
|
Before Width: | Height: | Size: 5.2 MiB |
|
Before Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 101 KiB |
@@ -8,6 +8,6 @@ module.exports = {
|
||||
|
||||
seedDB: true,
|
||||
redisHost: 'localhost',
|
||||
apiUrl: 'http://ext-test.deepsouthsounds.com:8001',
|
||||
apiUrl: 'https://ext-test.deepsouthsounds.com:8001',
|
||||
radioUrl: 'http://localhost:8000'
|
||||
};
|
||||
|
||||