fix: rename server.js to index.js for replit debugging (#69)

This commit is contained in:
Kealan Parr
2022-05-03 21:36:35 +01:00
committed by GitHub
parent f1efd129d3
commit 6533033b7d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
// server.js
// index.js
// where your node app starts
// init project
+2 -2
View File
@@ -2,9 +2,9 @@
"name": "fcc-api-projects-boilerplate",
"version": "0.0.1",
"description": "An FCC Backend Challenge",
"main": "server.js",
"main": "index.js",
"scripts": {
"start": "node server.js"
"start": "node index.js"
},
"dependencies": {
"express": "^4.12.4",