Skip to content

Commit f4febeb

Browse files
committed
Implement DB and terminated deal tracking
1 parent 4119c45 commit f4febeb

21 files changed

+9143
-2272
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ node_modules
22
.env
33
dist
44

5+
/prisma/generated/
6+
/prismaDmob/generated/
7+
58
src/**/*.js

docker-compose.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: "3.9"
2+
services:
3+
oracle-service-db:
4+
image: postgres:17
5+
restart: unless-stopped
6+
volumes:
7+
- postgres_data:/var/lib/postgresql/data
8+
environment:
9+
- PGUSER=postgres
10+
- POSTGRES_DB=postgres
11+
- POSTGRES_USER=postgres
12+
- POSTGRES_PASSWORD=postgres
13+
ports:
14+
- "8038:5432"
15+
healthcheck:
16+
test: "pg_isready"
17+
interval: 30s
18+
timeout: 5s
19+
retries: 2
20+
21+
volumes:
22+
postgres_data:
23+
driver: local

0 commit comments

Comments
 (0)