testeranto 0.79.62 → 0.79.63
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 +2 -1
- package/dist/common/TaskManBackEnd.js +1 -1
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/TaskManBackEnd.js +1 -1
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/TaskManBackEnd.mjs +1 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/TaskManBackEnd.ts +1 -1
package/Report.Dockerfile
CHANGED
|
@@ -36,8 +36,9 @@ RUN yarn run init
|
|
|
36
36
|
|
|
37
37
|
# # RUN ts-node-esm ./node_modules/testeranto/dist/prebuild/TaskManBackEnd.mjs
|
|
38
38
|
|
|
39
|
-
EXPOSE
|
|
39
|
+
EXPOSE 8080
|
|
40
40
|
EXPOSE 27017
|
|
41
41
|
ENV MONGO_HOST=host.docker.internal
|
|
42
|
+
ENV HTTPS_PORT=8080
|
|
42
43
|
# # CMD ['yarn', 'testeranto-testrun', '&', 'yarn', 'testeranto-taskman']
|
|
43
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 = 3000;
|
|
13
|
+
const port = process.env.HTTPS_PORT || "3000";
|
|
14
14
|
function findTextFiles(dir, fileList = []) {
|
|
15
15
|
const files = fs_1.default.readdirSync(dir);
|
|
16
16
|
for (const file of files) {
|