testeranto 0.79.64 → 0.79.66
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/Report.Dockerfile
CHANGED
|
@@ -59,7 +59,7 @@ var RoomSchema = new mongoose.Schema({
|
|
|
59
59
|
|
|
60
60
|
// src/TaskManBackEnd.ts
|
|
61
61
|
console.log("hello TaskMan Backend", process.env);
|
|
62
|
-
var port = process.env.
|
|
62
|
+
var port = process.env.PORT || "8080";
|
|
63
63
|
function findTextFiles(dir, fileList = []) {
|
|
64
64
|
const files = fs.readdirSync(dir);
|
|
65
65
|
for (const file of files) {
|
package/package.json
CHANGED
package/src/TaskManBackEnd.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { IBaseConfig } from "./lib/types";
|
|
|
22
22
|
|
|
23
23
|
console.log("hello TaskMan Backend", process.env);
|
|
24
24
|
|
|
25
|
-
const port = process.env.
|
|
25
|
+
const port = process.env.PORT || "8080";
|
|
26
26
|
|
|
27
27
|
function findTextFiles(dir: string, fileList: string[] = []) {
|
|
28
28
|
const files = fs.readdirSync(dir);
|