From 085f6a76fdedf373ffe97d81de868f75cccde7b7 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 12 Nov 2017 21:17:13 +0000 Subject: [PATCH] Tiny update --- .travis.yml | 4 ++++ .vscode/launch.json | 0 .vscode/settings.json | 3 +++ routes/comp.js | 1 - routes/index.js | 2 +- 5 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .travis.yml create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0cee8d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: node_js + +node_js: + - stable \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e69de29 diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..203dcdd --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "C:\\Program Files\\Python36\\python.exe" +} \ No newline at end of file diff --git a/routes/comp.js b/routes/comp.js index 5b78f06..fc16228 100644 --- a/routes/comp.js +++ b/routes/comp.js @@ -6,5 +6,4 @@ router.get('/', function(req, res, next) { res.render('index', { title: 'Composite Reactions', comp: true}); }); - module.exports = router; diff --git a/routes/index.js b/routes/index.js index a98b208..f60d0a4 100644 --- a/routes/index.js +++ b/routes/index.js @@ -3,7 +3,7 @@ var router = express.Router(); /* GET home page. */ router.get('/', function(req, res, next) { - res.render('index', { title: 'EVE Reactions Calculator', root: true}); + res.render('index', { title: 'EVE Reactions Calculator', root: true}); }); module.exports = router;