testeranto 0.79.65 → 0.79.67

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
@@ -39,6 +39,6 @@ RUN yarn run init
39
39
  EXPOSE 8080
40
40
  EXPOSE 27017
41
41
  ENV MONGO_HOST=host.docker.internal
42
- ENV HTTPS_PORT=8080
42
+ # ENV PORT=8080
43
43
  # # CMD ['yarn', 'testeranto-testrun', '&', 'yarn', 'testeranto-taskman']
44
44
  CMD ["yarn", "report"]
@@ -10,7 +10,7 @@ const path_1 = __importDefault(require("path"));
10
10
  const fs_1 = __importDefault(require("fs"));
11
11
  const mongooseSchemas_1 = require("./mongooseSchemas");
12
12
  console.log("hello TaskMan Backend", process.env);
13
- const port = process.env.HTTPS_PORT || "3000";
13
+ const port = process.env.PORT || "8080";
14
14
  function findTextFiles(dir, fileList = []) {
15
15
  const files = fs_1.default.readdirSync(dir);
16
16
  for (const file of files) {