server-up-ndot 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/readme.md
CHANGED
package/templates/basic/.env
CHANGED
package/templates/basic/app.js
CHANGED
|
@@ -7,7 +7,7 @@ require('dotenv').config();
|
|
|
7
7
|
const app = express();
|
|
8
8
|
const startPort = process.env.PORT || 3000;
|
|
9
9
|
const msg = process.env.MSG_ROOT || "segfaultandsegmentationfault";
|
|
10
|
-
const html = process.env.HTML_FILE || "nonehtml.html"
|
|
10
|
+
const html = process.env.HTML_FILE || "./public/nonehtml.html"
|
|
11
11
|
app.use(cors());
|
|
12
12
|
app.use(express.json());
|
|
13
13
|
|
|
File without changes
|
|
File without changes
|