Implemented end-to-end tests for the app and introduced path aliases in `tsconfig.json`. Updated `pnpm-lock.yaml` with the latest dependency versions. Added a new service method to fetch offers by user ID and crypto ID.
14 lines
359 B
YAML
14 lines
359 B
YAML
services:
|
|
database:
|
|
container_name: "neptune-db"
|
|
image: 'postgres:latest'
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "${POSTGRES_PORT}:5432"
|
|
environment:
|
|
POSTGRES_USER: ${POSTGRES_USER}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
POSTGRES_DB: ${POSTGRES_DATABASE}
|
|
volumes:
|
|
- '${PWD}/db-data/:/var/lib/postgresql/data/' |