Skip to content

Commit

Permalink
initialize project
Browse files Browse the repository at this point in the history
  • Loading branch information
whboyd committed Apr 20, 2018
0 parents commit 6cc65fd
Show file tree
Hide file tree
Showing 21 changed files with 5,684 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.gradle
dist
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# cicd-pipeline-train-schedule-gradle

This is a simple train schedule app written using nodejs. It is intended to be used as a sample application for a series of hands-on learning activities.

## Running the app

You need a Java JDK 7 or later to run the build. You can run the build like this:

./gradlew build

You can run the app with:

./gradlew npm_start

Once it is running, you can access it in a browser at [http://localhost:3000](http://localhost:3000)
41 changes: 41 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');

var indexRouter = require('./routes/index');
var trainsRouter = require('./routes/trains');

var app = express();

// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');

app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

app.use('/', indexRouter);
app.use('/trains', trainsRouter);

// catch 404 and forward to error handler
app.use(function(req, res, next) {
next(createError(404));
});

// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};

// render the error page
res.status(err.status || 500);
res.render('error');
});

module.exports = app;
90 changes: 90 additions & 0 deletions bin/www
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
#!/usr/bin/env node

/**
* Module dependencies.
*/

var app = require('../app');
var debug = require('debug')('cicd-pipeline-train-schedule-git:server');
var http = require('http');

/**
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

var server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
*/

server.listen(port);
server.on('error', onError);
server.on('listening', onListening);

/**
* Normalize a port into a number, string, or false.
*/

function normalizePort(val) {
var port = parseInt(val, 10);

if (isNaN(port)) {
// named pipe
return val;
}

if (port >= 0) {
// port number
return port;
}

return false;
}

/**
* Event listener for HTTP server "error" event.
*/

function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}

var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}

/**
* Event listener for HTTP server "listening" event.
*/

function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}
33 changes: 33 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
plugins {
//inlude the nodeJS plugin to execute nodejs and npm tasks
id "com.moowork.node" version "1.2.0"
}

node {
download = true
}

//declare a build task
task build

//declare a task to create a zip of the app
task zip(type: Zip) {
from ('.') {
include "*"
include "bin/**"
include "data/**"
include "node_modules/**"
include "public/**"
include "routes/**"
include "views/**"
}
destinationDir(file("dist"))
baseName "trainSchedule"
}

//declare task dependencies
build.dependsOn zip
zip.dependsOn npm_build
npm_build.dependsOn npm_test
npm_test.dependsOn npmInstall
npm_build.dependsOn npmInstall
86 changes: 86 additions & 0 deletions data/trains.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"trains": [
{
"name": "Hogwarts Express",
"stops": [
{
"station": "Sycamore",
"status": "ON-TIME",
"arrival": "12:00pm",
"departure": "12:10pm"
},
{
"station": "Pine",
"status": "ON-TIME",
"arrival": "1:00pm",
"departure": "1:10pm"
}
]
},
{
"name": "Flying Scotsman",
"stops": [
{
"station": "Pine",
"status": "ON-TIME",
"arrival": "12:00pm",
"departure": "12:10pm"
},
{
"station": "Sycamore",
"status": "DELAYED",
"arrival": "1:00pm",
"departure": "1:10pm",
"delayedArrival": "1:00pm",
"delayedDeparture": "1:17pm"
}
]
},
{
"name": "Orient Express",
"stops": [
{
"station": "Sycamore",
"status": "ON-TIME",
"arrival": "12:00pm",
"departure": "12:10pm"
},
{
"station": "Cypress",
"status": "DELAYED",
"arrival": "1:00pm",
"departure": "1:10pm",
"delayedArrival": "1:07pm",
"delayedDeparture": "1:17pm"
}
]
},
{
"name": "Golden Arrow",
"stops": [
{
"station": "Cypress",
"status": "ON-TIME",
"arrival": "12:00pm",
"departure": "12:10pm"
},
{
"station": "Pine",
"status": "DELAYED",
"arrival": "1:00pm",
"departure": "1:10pm",
"delayedArrival": "1:07pm",
"delayedDeparture": "1:17pm"
},
{
"station": "Hickory",
"status": "DELAYED",
"arrival": "1:00pm",
"departure": "1:10pm",
"delayedArrival": "1:07pm",
"delayedDeparture": "1:17pm"
}
]
}
]
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 6cc65fd

Please sign in to comment.