first commit

This commit is contained in:
Cauê Faleiros
2026-07-02 12:54:31 -03:00
commit cd6b4c93f0
17 changed files with 1409 additions and 0 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
production-orders-sync:
build: .
container_name: production-orders-sync
env_file:
- .env
environment:
TINY_REQUEST_DELAY_MS: ${TINY_REQUEST_DELAY_MS:-5000}
DRY_RUN: ${DRY_RUN:-false}
restart: "no"
# Example only. In production, point DATABASE_URL at the existing Graphs Postgres.
postgres:
image: postgres:16-alpine
profiles:
- local-db
environment:
POSTGRES_DB: graphs
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- production-orders-sync-postgres:/var/lib/postgresql/data
volumes:
production-orders-sync-postgres: