NobGit
public anord read

Ledger

Why work hard when you can work easier?

Languages

Repository composition by tracked source files.

TypeScript
TypeScript 86% CSS 10% SQL 3% Shell 1% HTML 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/anord/ledger.git
ssh://[email protected]:2222/orgs/anord/ledger.git
docker-compose.yml
services:
  bootstrap:
    image: node:20-bookworm
    working_dir: /app
    command: sh /app/infra/scripts/dev-bootstrap.sh
    volumes:
      - .:/app
      - node_modules:/app/node_modules

  postgres:
    image: postgres:16-alpine
    environment:
      POSTGRES_DB: ${POSTGRES_DB:-ledger}
      POSTGRES_USER: ${POSTGRES_USER:-ledger}
      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ledger}
    volumes:
      - postgres_data:/var/lib/postgresql/data
      - ./infra/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-ledger} -d ${POSTGRES_DB:-ledger}"]
      interval: 5s
      timeout: 5s
      retries: 20

  redis:
    image: redis:7-alpine
    volumes:
      - redis_data:/data
    healthcheck:
      test: ["CMD", "redis-cli", "ping"]
      interval: 5s
      timeout: 5s
      retries: 20

  api:
    image: node:20-bookworm
    working_dir: /app
    command: sh -c "npm run db:migrate && npm run db:seed && npm --workspace @ledger/api run dev"
    env_file:
      - .env
    ports:
      - "4000:4000"
    volumes:
      - .:/app
      - ./storage/uploads:/app/storage/uploads
      - node_modules:/app/node_modules
    depends_on:
      bootstrap:
        condition: service_completed_successfully
      postgres:
        condition: service_healthy
      redis:
        condition: service_healthy

  web:
    image: node:20-bookworm
    working_dir: /app
    command: npm --workspace @ledger/web run dev -- --host 0.0.0.0
    env_file:
      - .env
    ports:
      - "5173:5173"
    volumes:
      - .:/app
      - node_modules:/app/node_modules
    depends_on:
      bootstrap:
        condition: service_completed_successfully
      api:
        condition: service_started

  worker:
    image: node:20-bookworm
    working_dir: /app
    command: npm --workspace @ledger/worker run dev
    env_file:
      - .env
    volumes:
      - .:/app
      - node_modules:/app/node_modules
    depends_on:
      bootstrap:
        condition: service_completed_successfully
      api:
        condition: service_started
      redis:
        condition: service_healthy

volumes:
  postgres_data:
  redis_data:
  node_modules: