From c8877d182a453ac349c69a069b616d2599776e60 Mon Sep 17 00:00:00 2001 From: JayWll Date: Sat, 4 Jan 2020 11:27:28 -0700 Subject: [PATCH] Moving nodeJS app files to nodeapp subfolder --- app.js => nodeapp/app.js | 0 {views => nodeapp/views}/index.html | 0 package.json | 6 +++--- 3 files changed, 3 insertions(+), 3 deletions(-) rename app.js => nodeapp/app.js (100%) rename {views => nodeapp/views}/index.html (100%) diff --git a/app.js b/nodeapp/app.js similarity index 100% rename from app.js rename to nodeapp/app.js diff --git a/views/index.html b/nodeapp/views/index.html similarity index 100% rename from views/index.html rename to nodeapp/views/index.html diff --git a/package.json b/package.json index 61df24c..d68f7e9 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,9 @@ "name": "jasonsplant", "version": "1.0.0", "description": "A Node app to collect moisture data from the plant I have on my desk in the office, and graph the results.", - "main": "app.js", + "main": "nodeapp/app.js", "scripts": { - "start": "node app.js" + "start": "node nodeapp/app.js" }, "dependencies": { "express": "^4.17.1", @@ -26,4 +26,4 @@ "glitch", "express" ] -} \ No newline at end of file +}