Skip to content

Commit 03eb368

Browse files
Merge branch 'master' into feat/confirm-ocr
2 parents e8a018f + 06b4bf3 commit 03eb368

File tree

11 files changed

+252
-51
lines changed

11 files changed

+252
-51
lines changed

backend/.dockerignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules
2+
dist
3+
build
4+
.DS_Store
5+
.env
6+
.env.local
7+
.env.development.local
8+
.env.test.local
9+
.env.production.local

backend/.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
PORT=5000
2+
MONGO_URI=your-mongodb-atlas-uri
3+
JWT_SECRET=your-secret-key
4+
GEMINI_API_KEY=your-gemini-api-key
5+
KEEP_ALIVE_URL=http://localhost:5000

backend/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:18-alpine
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
7+
RUN npm install
8+
9+
COPY . .
10+
11+
EXPOSE 5000
12+
13+
CMD ["npm", "start"]

backend/package-lock.json

Lines changed: 135 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"test": "jest"
1515
},
1616
"dependencies": {
17-
"@google/genai": "^1.25.0",
17+
"@google/genai": "^1.26.0",
1818
"axios": "^1.12.2",
1919
"bcryptjs": "^3.0.2",
2020
"cors": "^2.8.5",

0 commit comments

Comments
 (0)