Skip to content

Commit

Permalink
Merge pull request #18 from SummySumanth/port-change
Browse files Browse the repository at this point in the history
Port change
  • Loading branch information
SummySumanth authored Feb 3, 2019
2 parents 0bd2a32 + d4ccdb3 commit 222a928
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let startServer = () =>{
// console.log('###PORT NUMBER process.env.PORT :::: ', process.env.PORT);
if(!process.env.PORT){
console.log('over riding port number');
// process.env.PORT = 8000;
process.env.PORT = 8001;
}
// Routing configurations
app.use(express.static(__dirname + '/dist/public'));
Expand All @@ -47,7 +47,7 @@ let startServer = () =>{
// Starting Server
app.listen(process.env.PORT ,"0.0.0.0", () =>{
logger.info(`server start on port ${process.env.PORT} `);
console.log('Server is now running at port 8000 in localhost');
console.log(`Server is now running at port ${process.env.PORT} in localhost`);
});
}

Expand Down
3 changes: 0 additions & 3 deletions view/js/routes/landingPage/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ import Signin from '../../components/landingPage/signinContainer';
import Signup from '../../components/landingPage/signupContainer';


import '../../../scss/Components/landingPage/landingPage.scss';


class LandingPage extends Component{
render(){
const { match } = this.props;
Expand Down
1 change: 1 addition & 0 deletions view/scss/Components/landingPage/landingPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ body{
flex: 1;
display: flex;
flex-direction: row;
overflow: auto;
justify-content: flex-start; /* align items in Main Axis */
align-items: stretch; /* align items in Cross Axis */
align-content: stretch; /* Extra space in Cross Axis */
Expand Down

0 comments on commit 222a928

Please sign in to comment.