Parcourir la source

Update port and stuff.

Lee Morgan il y a 6 mois
Parent
commit
4c31fc901e
2 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 1 1
      app.js
  2. 2 1
      package.json

+ 1 - 1
app.js

@@ -18,4 +18,4 @@ app.use(bodyParser.urlencoded({extended: false}))
 app.use(fileUpload({limits: { fileSize: 1024 * 1024}}));
 require("./routes.js")(app);
 
-app.listen(8000);
+app.listen(8001);

+ 2 - 1
package.json

@@ -4,7 +4,8 @@
   "description": "Personal Website",
   "main": "app.js",
   "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
+    "test": "echo \"Error: no test specified\" && exit 1",
+    "dev": "nodemon app.js"
   },
   "author": "Lee Morgan",
   "license": "ISC",