Merge pull request #4 from PeteBa/Local-Hosting
Allow port to be user-configurable
This commit is contained in:
14
server.js
Normal file → Executable file
14
server.js
Normal file → Executable file
@@ -3,11 +3,14 @@ var express = require( "express" ),
|
|||||||
mongoose = require( "mongoose" ),
|
mongoose = require( "mongoose" ),
|
||||||
Cache = require( "./models/Cache" ),
|
Cache = require( "./models/Cache" ),
|
||||||
CronJob = require( "cron" ).CronJob,
|
CronJob = require( "cron" ).CronJob,
|
||||||
|
host = process.env.HOST || "127.0.0.1",
|
||||||
port = process.env.PORT || 3000,
|
port = process.env.PORT || 3000,
|
||||||
app = express();
|
app = express();
|
||||||
|
|
||||||
if ( !process.env.PORT ) {
|
if ( !process.env.HOST || !process.env.PORT ) {
|
||||||
require( "dotenv" ).load();
|
require( "dotenv" ).load();
|
||||||
|
host = process.env.HOST || host;
|
||||||
|
port = process.env.PORT || port;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect to local MongoDB instance
|
// Connect to local MongoDB instance
|
||||||
@@ -24,6 +27,10 @@ mongoose.connection.on( "error", function() {
|
|||||||
app.get( /weather(\d+)\.py/, weather.getWeather );
|
app.get( /weather(\d+)\.py/, weather.getWeather );
|
||||||
app.get( /(\d+)/, weather.getWeather );
|
app.get( /(\d+)/, weather.getWeather );
|
||||||
|
|
||||||
|
app.get('/', function (req, res) {
|
||||||
|
res.send('OpenSprinkler Weather Service');
|
||||||
|
});
|
||||||
|
|
||||||
// Handle 404 error
|
// Handle 404 error
|
||||||
app.use( function( req, res ) {
|
app.use( function( req, res ) {
|
||||||
res.status( 404 );
|
res.status( 404 );
|
||||||
@@ -31,9 +38,8 @@ app.use( function( req, res ) {
|
|||||||
} );
|
} );
|
||||||
|
|
||||||
// Start listening on the service port
|
// Start listening on the service port
|
||||||
app.listen( port, "127.0.0.1", function() {
|
app.listen( port, host, function() {
|
||||||
|
console.log( "OpenSprinkler Weather Service now listening on %s:%s", host, port );
|
||||||
console.log( "OpenSprinkler Weather Service now listening on port %s", port );
|
|
||||||
} );
|
} );
|
||||||
|
|
||||||
// Schedule a cronjob daily to consildate the weather cache data, runs daily
|
// Schedule a cronjob daily to consildate the weather cache data, runs daily
|
||||||
|
|||||||
Reference in New Issue
Block a user