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.
@@ -0,0 +1,37 @@
1
+ version: "0.1"
2
+
3
+ services:
4
+ report:
5
+ image: us-west1-docker.pkg.dev/dev-trail-450920-p2/testeranto-docker/report:latest
6
+ container_name: report
7
+ ports:
8
+ - 8080:8080
9
+
10
+ mongodb:
11
+ image: mongo
12
+ container_name: mongodb
13
+ environment:
14
+ - PUID=1000
15
+ - PGID=1000
16
+ volumes:
17
+ - /home/barry/mongodb/database:/data/db
18
+ ports:
19
+ - 27017:27017
20
+ restart: unless-stopped
21
+ # services:
22
+
23
+ # counter:
24
+ # image: gcr.io/${PROJECT_ID}/gcb-docker-compose:latest
25
+ # container_name: counter
26
+ # depends_on:
27
+ # - redis
28
+ # ports:
29
+ # - "50051:50051"
30
+ # environment:
31
+ # - REDIS_HOST=redis
32
+ # - REDIS_PORT=6379
33
+
34
+ # redis:
35
+ # image: redis
36
+ # ports:
37
+ # - "6379:6379"
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.67",
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);