Skip to content

Commit

Permalink
Added favicon and ready for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahtab Alam committed Dec 24, 2016
1 parent bef426f commit 1375eed
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 3,7 @@
<head>
<meta charset="utf-8">
<title>Linkository: Dont lose your bookmarks again</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="vendor/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="css/united.css">
<link rel="stylesheet" href="css/app.css" >
Expand Down
4 changes: 2 additions & 2 deletions models/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 3,8 @@ var mongoose = require( 'mongoose' );
var bcrypt=require('bcrypt');
var SALT_WORK_FACTOR = 10;

var dbURI = 'mongodb://localhost/test';
//var dbURI =process.env.dbURI
//var dbURI = 'mongodb://localhost/test';
var dbURI =process.env.dbURI
mongoose.connect(dbURI);

mongoose.connection.on('connected', function () {
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
7 changes: 4 additions & 3 deletions public/js/constant.js
Original file line number Diff line number Diff line change
@@ -1,5 1,6 @@
/*var appConstants=angular.module('app.constants',[])
var appConstants=angular.module('app.constants',[])
.constant('CONSTANT',{"API_URL":"http://www.linkository.com"});
*/

/*
var appConstants=angular.module('app.constants',[])
.constant('CONSTANT',{"API_URL":"http://localhost:8080"});
.constant('CONSTANT',{"API_URL":"http://localhost:8080"});*/

0 comments on commit 1375eed

Please sign in to comment.