Compare commits

..

No commits in common. "a7250ef3239e2b955844d97ada53206f6a0e45b7" and "21cbfb31c91ba1171194c1bd286b248cf45f8273" have entirely different histories.

10 changed files with 20 additions and 51 deletions

View file

@ -9,10 +9,7 @@ COPY . .
RUN npm install -g npm@11.2.0
RUN npm install
#RUN npx tsc -p tsconfig.json
RUN npx tsc -p tsconfig.backend.json
RUN npx tsc -p tsconfig.frontend.json
RUN npx tsc -p tsconfig.json
# 2. Rust build-Stage
FROM forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/rust:1.74.0 AS rust-build
@ -24,22 +21,11 @@ FROM forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/node:20.18.1
WORKDIR /app
COPY --from=build /app/dist ./dist
#COPY --from=build /app/index.html ./dist/
COPY --from=build /app/frontend/index.html ./dist/frontend/
#COPY --from=build /app/index.html ./dist/iching/
COPY --from=build /app/index.html ./dist/
COPY --from=rust-build /usr/local/cargo/bin/iching /usr/local/bin/iching
### NEW ###
RUN find dist/backend -name "*.js" -exec bash -c 'mv "$0" "${0%.js}.mjs"' {} \;
RUN find dist/frontend -name "*.js" -exec bash -c 'mv "$0" "${0%.js}.cjs"' {} \;
RUN mkdir -p dist/iching
#RUN cp dist/*.js dist/iching/
RUN cp dist/*.js dist/iching/
#RUN node dist/iching/server.js
RUN node dist/backend/server.mjs &
#CMD ["npx", "http-server", "dist", "-p", "8080", "--mime", "application/javascript=js"]
CMD ["npx", "http-server", "dist/frontend", "-p", "8080", "--mime", "application/javascript=js"]
CMD ["npx", "http-server", "dist", "-p", "8080", "--mime", "application/javascript=js"]

View file

@ -1,4 +1,4 @@
/*import { html } from "./broker";
import { html } from "./broker";
import { test, beforeAll, afterAll } from "@jest/globals";
jest.useFakeTimers();
@ -17,4 +17,3 @@ test("Generate HTML for images", () => {
expect(html("Images:\nOver the earth, the lake:\nThe image of Gathering Together.\nThus the superior man renews his weapons\nIn order to meet the unforseen."))
.toBe("<p><h3>Images:</h3>Over the earth, the lake:<br>The image of Gathering Together.<br>Thus the superior man renews his weapons<br>In order to meet the unforseen.<br></p></div>");
});
*/

View file

@ -3,13 +3,12 @@ function handleClick(): void {
console.log("Der Button wurde geklickt!");
alert("Hallo von TypeScript!");
fetch("/api/command", { method: "POST" })
/*fetch("/api/command", { method: "POST" })
.then(res => res.text())
.then(text => console.log("Server sagt:", text));
/*fetch("https://192-168-197-2.c-one-infra.de/api/command", { method: "POST" })
.then(text => console.log("Server sagt:", text));*/
fetch("https://192-168-197-2.c-one-infra.de/api/command", { method: "POST" })
.then(res => res.text())
.then(text => console.log("Server sagt:", text)); */
.then(text => console.log("Server sagt:", text));
}
document.addEventListener("DOMContentLoaded", () => {

View file

@ -8,7 +8,7 @@
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"type": "commonjs",
"description": "",
"devDependencies": {
"@types/express": "^5.0.1",

View file

@ -12,4 +12,4 @@ app.post('/api/command', (req, res) => {
app.listen(port, '0.0.0.0', () => {
console.log(`Server läuft auf http://0.0.0.0:${port}`);
});
});

View file

@ -1,8 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist/backend",
"module": "ESNext"
},
"include": ["backend/**/*.ts"]
}

View file

@ -1,8 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist/frontend",
"module": "CommonJS"
},
"include": ["frontend/**/*.ts"]
}

View file

@ -1,9 +1,10 @@
{
"compilerOptions": {
"target": "es2020",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"moduleResolution": "Node",
"outDir": "dist",
"strict": true,
"esModuleInterop": true
}
}