let's try this again
Some checks failed
Deploy Backend / deploy (push) Failing after 25s
Deploy Frontend / deploy (push) Failing after 10s

This commit is contained in:
Lee
2024-10-04 20:35:44 +01:00
parent 00462d9ed6
commit 98c52e5525
418 changed files with 1692 additions and 751 deletions

16
backend/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
# Install dependencies and build the app
FROM base AS builder
WORKDIR /app
COPY package.json* pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet
COPY . .
RUN pnpm run build
# Final stage to run the app
FROM base AS runner
WORKDIR /app
COPY --from=builder /app/dist ./dist
EXPOSE 3000
CMD ["pnpm", "start"]

19
backend/package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "backend",
"version": "1.0.0",
"author": "fascinated7",
"license": "MIT",
"private": true,
"main": "src/index.ts",
"scripts": {
"dev": "concurrently -k \"tsup --watch\" \"nodemon dist/index.js\"",
"build": "tsup",
"start": "node dist/index.js"
},
"devDependencies": {
"concurrently": "^9.0.1",
"nodemon": "^2.0.20",
"tsup": "^8.3.0",
"typescript": "^5"
}
}

1
backend/src/index.ts Normal file
View File

@ -0,0 +1 @@
console.log("meow!!!");

12
backend/tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules"]
}

10
backend/tsup.config.ts Normal file
View File

@ -0,0 +1,10 @@
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm", "cjs"],
splitting: false,
dts: true,
clean: true,
outDir: "./dist",
});