testeranto 0.79.65 → 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
@@ -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"]
@@ -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.HTTPS_PORT || "3000";
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.65",
4
+ "version": "0.79.66",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },
@@ -254,4 +254,4 @@
254
254
  "uuid": "^10.0.0",
255
255
  "ws": "^8.16.0"
256
256
  }
257
- }
257
+ }
@@ -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.HTTPS_PORT || "3000";
25
+ const port = process.env.PORT || "8080";
26
26
 
27
27
  function findTextFiles(dir: string, fileList: string[] = []) {
28
28
  const files = fs.readdirSync(dir);